Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error אורקל ORA-01658 ניתן ליצור INITIAL היקף עבור קטע ב Tablespace שגיאה
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: בעת הוספת רשומות למסד הנתונים אורקל באמצעות משפטי SQL, יצירת טבלאות חדשות, dump לייבא גיבוי למסד הנתונים אורקל או כאשר מניפולציה טבלאות או נתונים במסד הנתונים Oracle, את השגיאה הבאה עשויה מתרחשת:
ORA-01658: unable to create INITIAL extent for segment in tablespace tablespace_name ORA-01658: אפשרות ליצור במידה התחלתי עבור קטע ב tablespace_name tablespace
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. הבעיה נגרמת על ידי אורקל מסוגלת או לא מצליח למצוא מספיק שטח רציף להקצות במידה התחלתי עבור קטע את יצירתם, בשל קבצי נתונים עבור tablespace שצוין ב tablespace_name הפך מלא, או אין מספיק מקום ב 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. אתה יכול לבדוק אם datafiles זמין ומשמשים Tablespaces של אורקל היא autoextensible, וגם אם יש מקום פנוי ב datafile באמצעות השאילתה הבאה.
select a.file_id,b.file_name,b.autoextensible,b.bytes/1024/1024,sum(a.bytes)/1024/1024 סכום a.file_id, b.file_name, b.autoextensible, b.bytes/1024/1024, בחר (a.bytes) / 1024/1024
from dba_extents a , dba_data_files b מ dba_extents, dba_data_files B
where a.file_id=b.file_id איפה a.file_id = b.file_id
group by a.file_id,b.file_name,autoextensible,b.bytes/1024/1024 על ידי קבוצת a.file_id, b.file_name, autoextensible, b.bytes/1024/1024
The solutions or workarounds for the ORA-01658 Oracle error include: או פתרונות לעקיפת הבעיה עבור שגיאה ORA-01658-Oracle כוללים:
- Add a new datafile into the tablespace to increase additional space by using SQL query as shown: הוסף datafile חדש לתוך tablespace כדי להגדיל את שטח נוסף, באמצעות שאילתת SQL כפי שמוצג:
ALTER TABLESPACE <tablespace_name> ADD DATAFILE <datafile_name7gt; size <size> ALTER TABLESPACE <tablespace_name> הוסף DATAFILE <datafile_name7gt; גודל <size>
- Retry the transaction or process with a smaller value for INITIAL. נסה שוב את העסקה או תהליך עם ערך קטן יותר עבור הראשוני.
- Set AUTOEXTEND on for the data file of the tablespace. AUTOEXTEND על הגדר עבור קובץ נתונים של tablespace.
- Increase the size of the existing datafile by using the following SQL command: להגדיל את הגודל של datafile הקיים באמצעות פקודת SQL הבאה:
ALTER DATABASE DATAFILE <datafile_name> RESIZE newsize; ALTER DATABASE DATAFILE <datafile_name> Resize newsize;
IMPORTANT : The page is machine translated and provided "as is" without warranty. חשוב: הדף מכונת תירגם מתפרסם "כמות שהוא" ללא אחריות. Machine translation may be difficult to understand. תרגום מכונה יכול להיות קשה להבין. Please refer to נא עיין original English article המאמר המקורי באנגלית whenever possible. בכל הזדמנות אפשרית.
Related Articles מאמרים קשורים
- How to Remove and Drop Datafiles from Tablespace in Oracle Database כיצד להסיר ושחרר Datafiles מ Tablespace ב Oracle Database
- ORA-25153 Temporary Tablespace is Empty Error in Oracle ORA-25153 זמניים Tablespace היא שגיאה ריק אורקל
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile איך זרוק Tablespace ולשחזר Oracle Database כאשר בטעות מחק Datafile
- How to Rename or Move Oracle Tablespace Datafile to Another Location כיצד לשנות שם או להעביר אורקל Tablespace Datafile אל מיקום אחר
- Oracle ORA-14074 Create or Add New Partition Fails Error אורקל ORA-14074 יצירת מחיצה חדשה או הוסף נכשל שגיאה
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error צור, הוספה או פיצול Oracle Database החלוקה נכשל עם שגיאה ORA-14080
- Oracle EXP-00091 Error When Export Database אורקל EXP-00091 שגיאה בעת ייצוא מסד נתונים
- Oracle Database Import Error 3113/3114 Oracle Database ייבוא שגיאה 3113/3114
- ORA-02449 Oracle Drop Table Error ORA-02449-Oracle זרוק טבלה שגיאה
- Workaround to Fix Windows 7 Unable To Create or Save New Files in the Folder Error When Unloading Box לעקיפת הבעיה כדי לתקן את Windows 7 לא ניתן ליצור קבצים חדשים או שמור את תיקיית שגיאה כאשר פורק Box









































