Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error Oracle ORA-01658 Impossibile creare INIZIALE Ambito per il segmento in Tablespace Errore
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: Quando si inserisce record in database Oracle da SQL dichiarazioni, la creazione di nuove tabelle, l'importazione in discarica di backup del database Oracle o quando la manipolazione dei dati o tabelle nel database Oracle, il seguente messaggio di errore si verifica maggio:
ORA-01658: unable to create INITIAL extent for segment in tablespace tablespace_name ORA-01658: Impossibile creare INIZIALE misura per il segmento in 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. Il problema è causato da Oracle non può o non riesce a trovare sufficiente spazio contiguo ad assegnare INIZIALE misura per il segmento creato, a causa del file di dati per un tablespace specificato nel tablespace_name è diventata piena, o non c'è abbastanza spazio in archivio dei dati.
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. È possibile verificare se il datafiles disponibili e utilizzati da Oracle tablespaces è autoextensible, e se non vi è alcun spazio libero in archivio dei dati utilizzando la seguente query di ricerca.
select a.file_id,b.file_name,b.autoextensible,b.bytes/1024/1024,sum(a.bytes)/1024/1024 selezionare a.file_id, b.file_name, b.autoextensible, b.bytes/1024/1024, somma (a.bytes) / 1024/1024
from dba_extents a , dba_data_files b da uno dba_extents, dba_data_files b
where a.file_id=b.file_id dove a.file_id = b.file_id
group by a.file_id,b.file_name,autoextensible,b.bytes/1024/1024 gruppo da a.file_id, b.file_name, autoextensible, b.bytes/1024/1024
The solutions or workarounds for the ORA-01658 Oracle error include: Le soluzioni o soluzioni per l'ORA-01658 Oracle errore includono:
- Add a new datafile into the tablespace to increase additional space by using SQL query as shown: Aggiungi un nuovo archivio dei dati in tablespace per aumentare lo spazio aggiuntivo utilizzando query SQL, come nell'esempio:
ALTER TABLESPACE <tablespace_name> ADD DATAFILE <datafile_name7gt; size <size> ALTER tablespace <tablespace_name> archivio dei dati relativi AGGIUNGERE <datafile_name7gt; dimensioni <size>
- Retry the transaction or process with a smaller value for INITIAL. Riprova l'operazione o processo con un valore inferiore all'investimento iniziale.
- Set AUTOEXTEND on for the data file of the tablespace. AUTOEXTEND impostare per il file di dati della tablespace.
- Increase the size of the existing datafile by using the following SQL command: Aumentare le dimensioni delle attuali archivio dei dati utilizzando il seguente comando SQL:
ALTER DATABASE DATAFILE <datafile_name> RESIZE newsize; ALTER DATABASE archivio dei dati <datafile_name> RIDIMENSIONA newsize;
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Questa è una macchina tradotto pagina che è fornito "così come sono" senza garanzia. Machine translation may be difficult to understand. La traduzione automatica può essere difficile da capire. Please refer to Si prega di fare riferimento a original English article articolo originale in inglese whenever possible. ogniqualvolta ciò sia possibile.
Share and contribute or get technical support and help at Condividere e contribuire o ottenere supporto tecnico e contribuire a My Digital Life Forums La mia vita digitale forum .
Related Articles Articoli correlati
- ORA-25153 Temporary Tablespace is Empty Error in Oracle ORA-25153 temporanea Tablespace è Vuoto Errore in Oracle
- How to Rename or Move Oracle Tablespace Datafile to Another Location Come rinominare o spostare Oracle tablespace archivio dei dati in un'altra posizione
- How to Remove and Drop Datafiles from Tablespace in Oracle Database Come rimuovere e Drop Datafiles da Tablespace in Oracle Database
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile Come goccia tablespace e recuperare database Oracle quando accidentalmente cancellato archivio dei dati
- Oracle Database Import Error 3113/3114 Database Oracle importazione errore 3113/3114
- ORA-01502 Oracle Index in Unusable State ORA-01502 Oracle Indice in inutilizzabili Stato
- Manual and Clean Uninstall Oracle for Windows Manuale e puliti disinstallare Oracle per Windows
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Creare, aggiungere o Split Oracle Database partizione con Fails ORA-14080 Errore
- ORA-00942 Table or View Does Not Exist Oracle Error ORA-00942 tabella o vista non esiste errore di Oracle
- Oracle ORA-14074 Create or Add New Partition Fails Error Oracle ORA-14074 creare o aggiungere nuovi partizione non errore
































