Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error Oracle Ora-01658 Tidak dapat Buat Luas awal untuk Segmen dalam Tablespace Kesalahan
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: Ketika memasukkan record ke dalam database Oracle oleh statemen SQL, membuat tabel baru, impor cadangan dump Oracle ke database atau ketika meja atau memanipulasi data dalam database Oracle, yang terjadi Mei error berikut:
ORA-01658: unable to create INITIAL extent for segment in tablespace tablespace_name Ora-01658: tidak dapat membuat taraf awal untuk segmen dalam 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. Masalah ini disebabkan oleh Oracle tidak dapat atau gagal untuk menemukan menyebelah ruang yang cukup untuk mengalokasikan awal untuk segmen mana yang dibuat, karena data file untuk tablespace ditentukan dalam tablespace_name telah menjadi penuh, atau tidak cukup ruang di 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. Anda dapat memeriksa apakah datafiles yang tersedia dan digunakan oleh Oracle's tablespaces adalah autoextensible, dan jika ada suatu ruang kosong di datafile dengan menggunakan query berikut.
select a.file_id,b.file_name,b.autoextensible,b.bytes/1024/1024,sum(a.bytes)/1024/1024 pilih 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 Dari dba_extents a, b dba_data_files
where a.file_id=b.file_id dimana a.file_id = b.file_id
group by a.file_id,b.file_name,autoextensible,b.bytes/1024/1024 grup oleh a.file_id, b.file_name, autoextensible, b.bytes/1024/1024
The solutions or workarounds for the ORA-01658 Oracle error include: Solusi atau workarounds untuk Ora-01658 Oracle kesalahan meliputi:
- Add a new datafile into the tablespace to increase additional space by using SQL query as shown: Tambah baru datafile ke dalam tablespace untuk meningkatkan tambahan ruang dengan menggunakan SQL query seperti:
ALTER TABLESPACE <tablespace_name> ADD DATAFILE <datafile_name7gt; size <size> Alter TABLESPACE <tablespace_name> ADD DATAFILE <datafile_name7gt; ukuran <size>
- Retry the transaction or process with a smaller value for INITIAL. Coba transaksi atau proses yang lebih kecil dengan nilai awal.
- Set AUTOEXTEND on for the data file of the tablespace. AUTOEXTEND di set untuk file data dari tablespace.
- Increase the size of the existing datafile by using the following SQL command: Meningkatkan ukuran datafile yang ada dengan menggunakan perintah SQL berikut:
ALTER DATABASE DATAFILE <datafile_name> RESIZE newsize; Alter DATABASE DATAFILE <datafile_name> RUBAH UKURAN newsize;
IMPORTANT : The page is machine translated and provided "as is" without warranty. PENTING: Halaman yang diterjemahkan mesin dan diberikan "sebagaimana adanya" tanpa jaminan. Machine translation may be difficult to understand. Mesin terjemahan mungkin sulit dimengerti. Please refer to Silakan merujuk ke original English article artikel asli Inggris whenever possible. bila memungkinkan.
Related Articles Artikel Terkait
- How to Remove and Drop Datafiles from Tablespace in Oracle Database Cara Hapus dan Drop Datafiles dari Tablespace di Oracle Database
- ORA-25153 Temporary Tablespace is Empty Error in Oracle Ora-25153 Temporary Tablespace adalah kosong Kesalahan dalam Oracle
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile Bagaimana Gugurkan Tablespace dan Recover Oracle Database Bila Tidak sengaja Hapus Datafile
- How to Rename or Move Oracle Tablespace Datafile to Another Location Mau Ganti Nama atau Oracle Tablespace Datafile Pindah ke Lokasi lain
- Oracle ORA-14074 Create or Add New Partition Fails Error Oracle Ora-14074 Buat atau Tambah Baru Partisi gagal Kesalahan
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Membuat, Tambah atau Split Oracle Database Partisi gagal dengan Ora-14080 Kesalahan
- Oracle EXP-00091 Error When Export Database Oracle EXP-00091 Kesalahan Ketika Ekspor Database
- Oracle Database Import Error 3113/3114 Oracle Database Impor Kesalahan 3113/3114
- ORA-02449 Oracle Drop Table Error Ora-02449 Oracle Drop Tabel Kesalahan
- IMP-00016 Required Character Set Conversion Not Supported Error when Import to Oracle Database IMP-00016 disyaratkan Character Set Konversi Tidak Didukung Kesalahan ketika Impor ke Database Oracle









































