Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error Oracle ORA-01658 Nemožno vytvoriť POČIATOČNEJ Rozsah za Segment v Tablespace Chyba
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: Pri vkladaní záznamov do databázy Oracle pomocou SQL výkazov, vytváranie nových tabuliek, import výpisu do záložnej databázy Oracle alebo pri manipulácii s tabuľkami alebo dáta v databáze Oracle, nasledujúce chyba môže sa vyskytuje:
ORA-01658: unable to create INITIAL extent for segment in tablespace tablespace_name ORA-01658: Nedá sa vytvoriť POČIATOČNEJ rozsahu pre segment v 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. Problém je spôsobený Oracle schopní alebo nepodarí nájsť dostatočný priestor priliehajúcich k pridelenie POČIATOČNEJ rozsahu pre segment je vytvorený so zreteľom na dátové súbory pre Tablespace uvedených v tablespace_name stala úplnú, alebo nie je dostatok miesta v datafile.
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. Môžete si zistiť, či datafiles dostupné a používané Oracle tablespaces je autoextensible, a ak existuje voľné miesto v datafile pomocou nasledujúceho dotazu.
select a.file_id,b.file_name,b.autoextensible,b.bytes/1024/1024,sum(a.bytes)/1024/1024 vyberte 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 od dba_extents a, b dba_data_files
where a.file_id=b.file_id kde a.file_id = b.file_id
group by a.file_id,b.file_name,autoextensible,b.bytes/1024/1024 skupiny a.file_id, b.file_name, autoextensible, b.bytes/1024/1024
The solutions or workarounds for the ORA-01658 Oracle error include: Riešenie, alebo riešenie pre ORA-01658 Oracle chyby zahŕňajú:
- Add a new datafile into the tablespace to increase additional space by using SQL query as shown: Pridať nový datafile do Tablespace zvýšiť ďalších priestorov pomocou SQL dotaze, ako je uvedené:
ALTER TABLESPACE <tablespace_name> ADD DATAFILE <datafile_name7gt; size <size> Alter Tablespace <tablespace_name> PRIDAŤ datafile <datafile_name7gt; veľkosť <size>
- Retry the transaction or process with a smaller value for INITIAL. Opakovať transakcie alebo proces s menšiu hodnotu PRVOTNÉ.
- Set AUTOEXTEND on for the data file of the tablespace. Nastaviť AUTOEXTEND, o dátový súbor z Tablespace.
- Increase the size of the existing datafile by using the following SQL command: Zväčšenie existujúce datafile pomocou nasledujúceho SQL príkazu:
ALTER DATABASE DATAFILE <datafile_name> RESIZE newsize; ALTER DATABASE datafile <datafile_name> veľkosť newsize;
IMPORTANT : The page is machine translated and provided "as is" without warranty. Upozornenie: Stránka je stroje preložené a poskytované "tak ako sú" bez záruky. Machine translation may be difficult to understand. Strojový preklad môže byť ťažké pochopiť. Please refer to Obráťte sa prosím na original English article Anglický originál článku whenever possible. kedykoľvek je to možné.
Related Articles Súvisiace články
- How to Remove and Drop Datafiles from Tablespace in Oracle Database Ako odstrániť a Drop Datafiles z Tablespace v Oracle Database
- ORA-25153 Temporary Tablespace is Empty Error in Oracle ORA-25153 Dočasné Tablespace je prázdny Chyba v Oracle
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile Ako Drop Tablespace a Recover Oracle Database Kedy Náhodne Odstrániť datafile
- How to Rename or Move Oracle Tablespace Datafile to Another Location Ako premenovať alebo presunúť Oracle Tablespace datafile na iné miesto
- Oracle ORA-14074 Create or Add New Partition Fails Error Oracle ORA-14074 Vytvoriť alebo Pridať nový oddiel nerozumie Chyba
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Vytvoriť, Pridať alebo Split Oracle Database oddiel nerozumie s ORA-14080 Chyba
- Oracle EXP-00091 Error When Export Database Oracle EXP-00091 chybu pri exporte databázy
- Oracle Database Import Error 3113/3114 Oracle Database Import Chyba 3113/3114
- ORA-02449 Oracle Drop Table Error ORA-02449 Oracle Drop Tabuľka Chyba
- IMP-00016 Required Character Set Conversion Not Supported Error when Import to Oracle Database IMP-00016 Vyžadováno Character Set Konverzný Nie Podporované Chyba pri importe do Oracle Database









































