Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error اوراكل ora - 01658 قادرة على انشاء الاولية لهذا الجزء في مدى خطأ 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: عند إدخال السجلات الى قاعدة البيانات أوراكل لغة الاستعلامات البنيويه من خلال البيانات ، وانشاء جداول جديدة ، واستيراد اغراق الاحتياطيه الى قاعدة بيانات اوراكل ، او عندما التلاعب في الجداول او البيانات في قاعدة بيانات اوراكل ، قد يحدث الخطأ التالية :
ORA-01658: unable to create INITIAL extent for segment in tablespace tablespace_name Ora - 01658 : تعذر انشاء الاولية لهذا الجزء في مدى 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. المشكلة التي تسببها اوراكل غير قادرة أو لا تجد ما يكفي من الفضاء متجاوره على تخصيص حد الأولية لخلق الجزء ، ويرجع ذلك الى ملفات البيانات ل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
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: Workarounds الحلول او لora - 01658 اوراكل خطأ ما يلي :
- Add a new datafile into the tablespace to increase additional space by using SQL query as shown: تضاف فقرة جديدة الى datafile الى tablespace لزيادة مساحة اضافية من خلال استخدام لغة الاستعلامات البنيويه الاستعلام كما هو مبين :
ALTER TABLESPACE <tablespace_name> ADD DATAFILE <datafile_name7gt; size <size> تغيير 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 القائمة من خلال استخدام لغة الاستعلامات البنيويه القيادة التالية :
ALTER DATABASE DATAFILE <datafile_name> RESIZE newsize; تغيير قاعدة بيانات datafile <datafile_name>تغيير newsize ؛
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. هام : هذا هو الاله الذي ترجم صفحة مقدمة "كما هى" دون ضمان. Machine translation may be difficult to understand. الترجمة الاليه قد يكون من الصعب ان نفهم. Please refer to يرجى الرجوع الى original English article المادة الاصليه English whenever possible. كلما كان ذلك ممكنا.
Share and contribute or get technical support and help at والمساهمة في حصة او الحصول على الدعم التقني والمساعدة فى My Digital Life Forums بلدي الرقميه الحياة المنتديات .
Related Articles مقالات ذات صلة
- ORA-25153 Temporary Tablespace is Empty Error in Oracle Ora - 25153 المؤقتة tablespace فارغه خطأ في أوراكل
- How to Rename or Move Oracle Tablespace Datafile to Another Location كيف لاعادة التسميه او اوراكل tablespace datafile الانتقال الى موقع آخر
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error خلق ، اضافة او تقسيم قاعدة البيانات اوراكل مع التقسيم لا خطأ ora - 14080
- Oracle Database Import Error 3113/3114 خطا قاعدة البيانات أوراكل استيراد 3113/3114
- ORA-01502 Oracle Index in Unusable State Ora - 01502 الرقم القياسي لشركة اوراكل في دولة غير صالحة للاستعمال
- ORA-00942 Table or View Does Not Exist Oracle Error Ora - 00942 بالنظر الى الجدول او لا وجود خطأ في أوراكل
- How to Remove and Drop Datafiles from Tablespace in Oracle Database كيفية ازالة وانخفاض datafiles من tablespace في قاعدة بيانات اوراكل
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile كيف تراجع tablespace واستعادة قاعدة البيانات أوراكل عند مصادفه حذف datafile
- Manual and Clean Uninstall Oracle for Windows دليل النظيفه وأوراكل لالغاء تثبيت ويندوز
- Oracle ORA-14074 Create or Add New Partition Fails Error اوراكل ora - 14074 انشاء او اضافة جديدة للتقسيم لا خطأ
































