Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error Oracle ORA-01658 Não foi possível criar INICIAL Extensão para o segmento no tablespace Erro
When inserting records into Oracle database by SQL statements, creating new tables, importing backup dump into Oracle database or when manipulating tables or data in the Oracle database, the following error may occurs: Ao inserir registros em banco de dados Oracle em instruções SQL, a criação de novos quadros, importadora de backup dump em banco de dados Oracle ou quando tabelas ou manipulando os dados no banco de dados Oracle, o seguinte erro pode ocorrer:
ORA-01658: unable to create INITIAL extent for segment in tablespace tablespace_name ORA-01658: não foi possível criar a primeira medida para o segmento no tablespace tablespace_name
The problem is caused by the Oracle unable or fails to find sufficient contiguous space to allocate INITIAL extent for segment being created, due to the data files for a tablespace specified in tablespace_name has become full, or there is not enough space in the datafile. O problema é causado por falha ou o Oracle incapaz de encontrar espaço contíguo suficiente para atribuir INICIAL medida para o segmento a ser criado, devido aos arquivos de dados para um tablespace tablespace_name tornou-se especificados na íntegra, ou não há espaço suficiente nos dados.
You can check if the datafiles available and used by Oracle’s tablespaces is autoextensible, and if there is any free space in the datafile by using the following query. Você pode verificar se os datafiles disponíveis e utilizados pela Oracle's tablespaces é autoextensible, e se há algum espaço livre no datafile, utilizando a seguinte consulta.
select a.file_id,b.file_name,b.autoextensible,b.bytes/1024/1024,sum(a.bytes)/1024/1024 selecione a.file_id, b.file_name, b.autoextensible, b.bytes/1024/1024, soma (a.bytes) / 1024/1024
from dba_extents a , dba_data_files b a partir de dba_extents a, b dba_data_files
where a.file_id=b.file_id onde a.file_id = b.file_id
group by a.file_id,b.file_name,autoextensible,b.bytes/1024/1024 a.file_id pelo grupo, b.file_name, autoextensible, b.bytes/1024/1024
The solutions or workarounds for the ORA-01658 Oracle error include: As soluções ou soluções para ORA-01658 Oracle erro incluem:
- Add a new datafile into the tablespace to increase additional space by using SQL query as shown: Adicione um novo datafile na tablespace espaço adicional para aumentar a consulta SQL usando como mostrado:
ALTER TABLESPACE <tablespace_name> ADD DATAFILE <datafile_name7gt; size <size> ALTER tablespace <tablespace_name> ADD DATAFILE <datafile_name7gt; tamanho <size>
- Retry the transaction or process with a smaller value for INITIAL. Repetir a operação ou processo, com um valor menor para INICIAL.
- Set AUTOEXTEND on for the data file of the tablespace. AUTOEXTEND em conjunto para o arquivo de dados do tablespace.
- Increase the size of the existing datafile by using the following SQL command: Aumento do tamanho do datafile já existentes, utilizando o seguinte comando SQL:
ALTER DATABASE DATAFILE <datafile_name> RESIZE newsize; ALTER DATABASE DATAFILE <datafile_name> RESIZE newsize;
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Esta é uma página traduzida máquina que é fornecida "como está" sem garantia. Machine translation may be difficult to understand. A tradução automática pode ser difícil de compreender. Please refer to Por favor, consulte a original English article Inglês original article whenever possible. sempre que possível.
Share and contribute or get technical support and help at Compartilhe e contribuir ou obter suporte técnico e ajudar a My Digital Life Forums Minha vida digital Fóruns .
Related Articles Artigos relacionados
- ORA-25153 Temporary Tablespace is Empty Error in Oracle ORA-25153 Temporária tablespace está vazio Erro em Oracle
- How to Rename or Move Oracle Tablespace Datafile to Another Location Como mudar o nome ou mover Oracle tablespace Datafile para outro local
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Criar, Adicionar ou Split Oracle Database Partição falhe com Erro ORA-14080
- Oracle Database Import Error 3113/3114 Banco de dados Oracle importação erro 3113/3114
- ORA-01502 Oracle Index in Unusable State ORA-01502 Oracle Índice inutilizáveis no Estado
- ORA-00942 Table or View Does Not Exist Oracle Error ORA-00942 Ver tabela ou não existe erro Oracle
- How to Remove and Drop Datafiles from Tablespace in Oracle Database Como remover e Drop Datafiles de banco de dados Oracle no tablespace
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile Como drop tablespace e recuperar banco de dados Oracle, quando acidentalmente apagar Datafile
- Manual and Clean Uninstall Oracle for Windows Manual limpo e desinstalação Oracle para Windows
- Oracle ORA-14074 Create or Add New Partition Fails Error Oracle ORA-14074 criar ou adicionar novas partições falhar erro


















