Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error יצירה, הוספה או פיצול Oracle Database מחיצה נכשל עם שגיאה אורה-14080
Oracle table partitioning is important for optimum performance of the database, as it allows Oracle to process the specific and independat partition or part that is smaller in size, instead of entire full table or database. Oracle טבלת מחיצות חשובה עבור מיטב הביצועים של מסד הנתונים, כיוון שהוא מאפשר ל-Oracle התהליך הספציפי ואת המחיצה או חלק independat כי היא בגודל קטן יותר, במקום כל שולחן מלא או הנתונים. However, when you want to create a new partition to a table by adding or splitting partition, administrator may encounter errors such as עם זאת, כאשר אתה רוצה ליצור מחיצה חדשה על שולחן או על ידי הוספת פציחה מחיצה, מנהל עלול להיתקל שגיאות כגון ORA-14074 אורה-14074 . . Other than that, Oracle error ORA-14080 can also happen, if you're not careful enough with the following symptom: חוץ מזה, Oracle-14080 אורה השגיאה גם יכול לקרות, אם אתה לא זהיר מספיק עם סימפטום הבאים:
ORA-14080: partition cannot be split along the specified high bound אורה-14080: מחיצה לא ניתן לפצל את שצוין גבוהה לאורך כבול
The cause for ORA-14080 error is due to Oracle user attempted to split a partition along a bound which either collates higher than that of the partition to be split or lower than that of a partition immediately preceding the one to be split. הגורם ל-14080 אורה שגיאה עקב Oracle המשתמש ניסה לפצל מחיצה לאורך כבול אשר collates או גבוה יותר מזה של המחיצה כדי להתפצל או נמוך יותר מזה של מחיצה מיד לפני אחת כדי להתפצל. In other word, the value that is been specified to split between the partition is incorrect, and part or all of the range of the partition values has been assigned or located in an existing partition defined in the database. תורחא Word, הערך שצוין כי הוא היה בין כדי לפצל את המחיצה הוא שגוי, ועל חלק או את כל טווח הערכים של המחיצה כבר הוקצה או הממוקמים מוגדרת מחיצה קיימת במסד הנתונים.
To solve the problem, the solution or workaround will be to ensure that the bound along which a partition is to be split collates lower than that of the partition to be split and higher that that of a partition immediately preceding the one to be split. כדי לפתור את הבעיה, הפתרון יהיה או לעקוף את הבעיה על מנת להבטיח כי מחויב לאורך המחיצה בה היא להתפצל collates נמוך יותר מזה של המחיצה להיות גבוה יותר או לפצל את זה של המחיצה מיד לפני אחת כדי להתפצל. The partition wants to be added or split must has value that are less than its closest higher value partition, yet has value that higher than the upper limit for its closest lower value partition. המחיצה רוצה להוסיף או לפצל כי יש לו ערך פחות מאשר את הערך מחיצה הקרוב גבוה יותר, עדיין יש ערך גבוה יותר עבור העליון להגביל את המחיצה ערך נמוך הקרוב.
For example, 3 partitions existed with high value as below: לדוגמה, עם 3 מחיצות קיים ערך גבוה כפי שלהלן:
Partition Name High Value מחיצה גבוהה שם ערך
————– ———- ----- ----
p1 20 P1 20
p2 40 P2 40
p3 60 P3 60
If you want to add a new partition by splitting with p3 partition, you cannot specify the value of 70 or 30, as both are out of bound. אם אתה רוצה להוסיף מחיצה חדשה על ידי פציחה P3 עם מחיצה, לא ניתן לציין את הערך של 70 או 30, שכן שניהם נמצאים מחוץ כבול. Specify 30 if you want to split the partition of p3. 30 ציין אם ברצונך לפצל את המחיצה של P3. For 70, you have to simply create or add new partition in alter table SQL statement command. ל 70, אתה צריך פשוט ליצור מחיצה חדשה או להוסיף לשנות את הטבלה ב-SQL statement פקודה.
Oracle database administrator can use the following command to retrieve a chart like above to help determine the possible wrong value that cause the error: מנהל מסד הנתונים של Oracle יכול להשתמש בפקודה הבאה כדי לאחזר תרשים כמו לעיל כדי לקבוע את ערך שגוי אפשרי הגורמות את השגיאה הבאה:
SELECT partition_name, high_value בחר partition_name, high_value
FROM dba_tab_partitions FROM dba_tab_partitions
WHERE table_name = 'table_name' איפה table_name = 'table_name'
ORDER BY partition_name ORDER BY partition_name
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 מאמרים קשורים
- Oracle ORA-14074 Create or Add New Partition Fails Error אורה-14074-Oracle צור או הוסף המחיצה החדשה אינה שגיאה
- Oracle Database Import Error 3113/3114 Oracle Database ייבוא שגיאה 3113/3114
- Oracle EXP-00091 Error When Export Database EXP-00091-Oracle שגיאה כאשר יצא מסד נתונים
- IMP-00016 Required Character Set Conversion Not Supported Error when Import to Oracle Database שובב-00016 נדרש התווים המרה אין תמיכה שגיאה כאשר יבוא אל Oracle Database
- Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error אורה Oracle-01658 לא ניתן ליצור הראשונית מידה עבור קטע ב Tablespace שגיאה
- Oracle Database Link קישור ל-Oracle Database
- Change Oracle Database User Password שנה ל-Oracle Database משתמש סיסמה
- ORA-02449 Oracle Drop Table Error אורה-02449-Oracle זרוק שגיאה טבלה
- ORA-00942 Table or View Does Not Exist Oracle Error אורה-00942 טבלה או תצוגה לא קיים Oracle שגיאה
- View and Retrieve Oracle Database Link Details הצג לאחזור ו-Oracle Database קישור פרטים









































