Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error Oracle ORA-01658 Unable to Create URSPRÜNGLICHER Umfang für Segment im Tablespace Fehler
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: Beim Einfügen Datensätze in Oracle-Datenbank durch SQL-Anweisungen, die Schaffung neuer Tabellen-, Import-Backup-Dump in Oracle-Datenbank oder bei der Manipulation von Tabellen oder Daten in die Oracle-Datenbank, die folgende Fehlermeldung tritt auf:
ORA-01658: unable to create INITIAL extent for segment in tablespace tablespace_name ORA-01658: unable to create INITIAL Maße für das Segment im 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. Das Problem wird durch die Oracle nicht in der Lage oder nicht genügend zusammenhängenden Platz zuzuweisen URSPRÜNGLICHER Maße für das Segment geschaffen, aufgrund der Daten-Dateien für einen Tablespace in tablespace_name geworden ist voll, oder es ist nicht genug Platz in der Datei.
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. Sie können überprüfen, ob die Datendateien zur Verfügung und wird von Oracle Tablespaces autoextensible ist, und wenn es einen freien Platz in der Datei, indem Sie die folgende Abfrage.
select a.file_id,b.file_name,b.autoextensible,b.bytes/1024/1024,sum(a.bytes)/1024/1024 wählen Sie a.file_id, b.file_name, b.autoextensible, b.bytes/1024/1024, SUM (a.bytes) / 1024/1024
from dba_extents a , dba_data_files b von dba_extents a, b dba_data_files
where a.file_id=b.file_id wo a.file_id = b.file_id
group by a.file_id,b.file_name,autoextensible,b.bytes/1024/1024 Gruppe von a.file_id, b.file_name, autoextensible, b.bytes/1024/1024
The solutions or workarounds for the ORA-01658 Oracle error include: Die Lösungen oder Workarounds für die ORA-01658 Oracle-Fehler umfassen:
- Add a new datafile into the tablespace to increase additional space by using SQL query as shown: Fügen Sie eine neue Datei in den Tablespace zu erhöhen zusätzlichen Raum durch die Verwendung als SQL-Abfrage angezeigt:
ALTER TABLESPACE <tablespace_name> ADD DATAFILE <datafile_name7gt; size <size> ALTER TABLESPACE <tablespace_name> ADD Datafile <datafile_name7gt; Größe <size>
- Retry the transaction or process with a smaller value for INITIAL. Wiederholen Sie die Transaktion oder Prozess mit einem kleineren Wert für initial.
- Set AUTOEXTEND on for the data file of the tablespace. Setzen Sie auf autoextend für die Daten-Datei der Tablespace.
- Increase the size of the existing datafile by using the following SQL command: Erhöhen Sie die Größe der bestehenden Datei, indem Sie die folgenden SQL-Befehl:
ALTER DATABASE DATAFILE <datafile_name> RESIZE newsize; ALTER DATABASE Datafile <datafile_name> RESIZE NewSize;
IMPORTANT : You're reading a machine translated page which is provided "as is" without warranty. WICHTIG: Sie lesen eine Maschine der Seite übersetzt wird "as is" ohne Garantie. Unlike human translation, machine translation does not understand the grammar, semantics, syntax, idioms of natural language, thus often produce inaccurate and low quality text which is misleading and incomprehensible. Im Gegensatz zu menschlichen Übersetzung, maschinelle Übersetzung nicht verstehen, die Grammatik, Semantik, Syntax, Idiome der natürlichen Sprache, so oft ungenau und niedrige Qualität der Text ist irreführend und unverständlich. Thus, please refer to So entnehmen Sie bitte original English article Original Englisch Artikel whenever possible. wann immer dies möglich ist.
MDL blog postings now continue at MDL Blog-Einträge nun weiterhin auf Tip and Trick Tipp und Trick , and readers are welcome to join Und Leser sind herzlich eingeladen, beizutreten My Digital Life Forums Meine digitalen Lebens Foren . Werden.
Related Articles Verwandte Artikel
- ORA-25153 Temporary Tablespace is Empty Error in Oracle ORA-25153 Temporary Tablespace ist leer Fehler in Oracle
- How to Rename or Move Oracle Tablespace Datafile to Another Location Wie umbenennen oder verschieben Oracle Tablespace Datafile an einen anderen Speicherort
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Erstellen, hinzufügen oder Split Oracle Database Partition schlägt fehl mit ORA-14080 Fehler
- Oracle Database Import Error 3113/3114 Oracle-Datenbank importieren Fehler 3113/3114
- ORA-01502 Oracle Index in Unusable State ORA-01502 Oracle-Index in Unusable Staat
- ORA-00942 Table or View Does Not Exist Oracle Error ORA-00942 Tabelle oder View nicht vorhanden ist Oracle-Fehler
- How to Remove and Drop Datafiles from Tablespace in Oracle Database How to Remove and Drop Datafiles von Tablespace auf Oracle-Datenbank
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile Wie Drop Tablespace und erholen Oracle-Datenbank, wenn versehentlich löschen Datafile
- Manual and Clean Uninstall Oracle for Windows Handbuch und sauber deinstallieren Oracle für Windows
- Oracle ORA-14074 Create or Add New Partition Fails Error Oracle ORA-14074 schaffen oder neue Partition schlägt fehl, Fehler
































