Oracle ORA-14074 Create or Add New Partition Fails Error Oracle ORA-14074 बनाएँ या नई विभाजन जोड़ें विफल त्रुटि
Oracle database partition is a division or decomposition of a logical database and/or its constituting elements (indexes or transaction logs) into distinct, smaller, more manageable and independent parts or pieces. Oracle डाटाबेस विभाजन एक विभाजन या एक तार्किक और डाटाबेस के अपघटन है / या इसके गठन तत्वों अनुक्रमित (या लेनदेन लॉग करता है), अलग छोटे, अधिक प्रबंधनीय और स्वतंत्र भागों या टुकड़ों में. Database partitioning provides solution to problems faced by supporting very large tables and indexes, especially in data warehouse applications, which store and analyze large amounts of historical data. डाटाबेस के विभाजन विशेष रूप से डेटा गोदाम अनुप्रयोग है, जो दुकान और ऐतिहासिक डेटा की बड़ी मात्रा का विश्लेषण करने में बहुत बड़ी मेज और अनुक्रमित, समर्थन की समस्याओं के समाधान प्रदान करता है. With partitioning or table splitting, SQL statements can access and manipulate the partitions rather than entire tables or indexes, and thus increase manageability, performance or availability of the Oracle database. विभाजन तालिका के साथ या तेज, एसक्यूएल बयानों का उपयोग और विभाजन में हेरफेर के बजाय पूरी तालिका या अनुक्रमित सकते हैं, और इस प्रकार manageability, प्रदर्शन या Oracle डाटाबेस की उपलब्धता की वृद्धि हुई है.
In Oracle Server or Oracle Enterprise Edition, when you want to add an additional new partition to a partitioned table by using the command ALTER TABLE <tablename> ADD PARTITION , the process fails and SQL*Plus will return the following error: Oracle सर्वर या Oracle Enterprise संस्करण में, आप कमांड टेबल बदल <tablename> जोड़ें विभाजन, इस प्रक्रिया में विफल रहता है और एसक्यूएल * प्लस निम्नलिखित त्रुटि लौटेगा का उपयोग करके एक विभाजन तालिका के लिए एक अतिरिक्त नया विभाजन जोड़ने जब चाहते हैं:
ORA-14074: partition bound must collate higher than that of the last partition ORA-14074: पिछले विभाजन की तुलना में अधिक मुक़ाबला करना चाहिए बाध्य विभाजन
This error symptom is normally happened when the administrator tries to add or create a new partition to a partitioned table between two partitions, or the new partition is located at the beginning or in the middle of a table, or if the partition bound on the highest partition is MAXVALUE (original partition was created with the highest partition defined as MAXVALUE on the partition key). यह त्रुटि लक्षण सामान्य हुआ शुरुआत या एक तालिका, या अगर विभाजन के सर्वोच्च पर ही के बीच में स्थित है जब प्रशासक को जोड़ने या दो विभाजन, या नया विभाजन के बीच एक विभाजन तालिका के लिए एक नया विभाजन बनाने की कोशिश करता है विभाजन MAXVALUE है (मूल विभाजन सर्वोच्च विभाजन कुंजी पर MAXVALUE के रूप में परिभाषित विभाजन के साथ बनाया) था.
The most likely case for the error is the MAXVALUE upper bound partition. त्रुटि के लिए सबसे अधिक संभावना मामले MAXVALUE ऊपरी बाध्य विभाजन है. You can check if there is such as high value exists in partitions defined for the table by using the following commands in SQL*Plus or TOAD: तुम अगर वहाँ की जांच जैसे उच्च मूल्य एसक्यूएल में निम्नलिखित कमांड * प्लस या मेंढक का उपयोग करके तालिका के लिए परिभाषित विभाजन में मौजूद है सकते हैं:
select high_value from dba_tab_partitions where table_name = 'table_name'; dba_tab_partitions से चुनें high_value जहां table_name '= table_name';
You should see something like: तुम ऐसा कुछ देखना चाहिए:
HIGH_VALUE HIGH_VALUE
——————————————————————————– ---------------------------
10 10
20 20
30 30
MAXVALUE MAXVALUE
In all of the above scenarios, Oracle doesn't allow to create a new partition by using Add Partition SQL statement. इसके बाद के संस्करण परिदृश्यों के सभी में, Oracle के विभाजन एसक्यूएल विवरण जोड़ें का उपयोग करके एक नया विभाजन बनाने की अनुमति नहीं है. Adding a new partition of these few instances can only be done with a split of partition by using SQL command of SPLIT PARTITION. ये कुछ उदाहरण का एक नया विभाजन जोड़ने से केवल विभाजन विभाजन के एसक्यूएल कमांड का प्रयोग करके विभाजन के विभाजन के साथ किया जा सकता है.
So the workaround or solution to the ORA-14074 error is by using the following SQL syntax to achieve the aim to add or create a new partition on an already partitioned table: तो workaround या ORA के समाधान के 14,074 त्रुटि निम्न SQL वाक्यविन्यास का उपयोग करने के उद्देश्य को जोड़ने या एक पहले से ही विभाजित मेज पर एक नया विभाजन बनाने के द्वारा प्राप्त होता है:
ALTER TABLE <tablename> SPLIT PARTITION बदल टेबल <tablename> विभाजन विभाजन
Full syntax will be: पूर्ण वाक्यविन्यास होगा:
ALTER TABLE <table_name> SPLIT PARTITION <partition_name> AT (<value>) बदल टेबल <table_name> विभाजन विभाजन <partition_name> पर (<value>)
INTO (PARTITION <new_partition>, PARTITION <next_partition (or partition_name as above line>) जांच (<new_partition> विभाजन, विभाजन line> इसके बाद के संस्करण के रूप में <next_partition (or partition_name)
UPDATE GLOBAL INDEXES; अंतर्राष्ट्रीय अनुक्रमित अद्यतन;
Note: UPDATE GLOBAL INDEXES is optional. नोट: ग्लोबल अनुक्रमित अद्यतन वैकल्पिक है.
For Example: उदाहरण के लिए:
ALTER TABLE demo SPLIT PARTITION pmaxvalue at (40) INTO (PARTITION newpartition, PARTITION pmaxvalue); (40) में टेबल पर प्रदर्शन विभाजन विभाजन pmaxvalue बदल (newpartition विभाजन, विभाजन pmaxvalue);
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 संबंधित लेख
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error बनाने के लिए, जोड़ें या भाजित Oracle डाटाबेस के विभाजन के साथ विफल रहता है ORA-14,080 त्रुटि
- Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error Oracle ORA-01658 से अनुभाग के लिए तालिकास्थान त्रुटि के रूप में शुरू में विस्तार करने में असमर्थ बनाएँ
- ORA-02449 Oracle Drop Table Error ORA-02449 Oracle ड्रॉप तालिका में त्रुटि
- ORA-00942 Table or View Does Not Exist Oracle Error ORA-00942 तालिका देखें या मौजूद नहीं है Oracle त्रुटि क्या
- Oracle EXP-00091 Error When Export Database Oracle EXP-00091 त्रुटि जब निर्यात डाटाबेस
- Oracle Database Import Error 3113/3114 Oracle डाटाबेस के आयात त्रुटि 3113/3114
- Easily Duplicate, Copy or Backup Tables in Oracle, PostgreSQL, DB2 and SQLite with Create Table As SQL आसानी से डुप्लिकेट, प्रतिलिपि बनाएँ या तालिका के साथ ओरेकल, PostgreSQL, DB2 और SQLite में बैकअप टेबल्स एसक्यूएल
- ORA-25153 Temporary Tablespace is Empty Error in Oracle ORA-25,153 अस्थायी तालिकास्थान Oracle में खाली त्रुटि है
- Oracle PL/SQL ORA-00947 Not Enough Values Error Oracle पी एल / एसक्यूएल ORA-00947 नहीं बस मान त्रुटि
- IMP-00016 Required Character Set Conversion Not Supported Error when Import to Oracle Database छोटा सा भूत-00016 आवश्यक कैरेक्टर सेट रूपांतरण नहीं समर्थित त्रुटि जब Oracle डाटाबेस के लिए आयात










































April 7th, 2008 18:44 7 अप्रैल 2008 18:44
we have a partition D20080330 already created abd the maxvalue is D30001231. हम एक विभाजन D20080330 पहले से ही बनाया maxvalue अब्द है D30001231 है.
Now we want to split the partition for D20080330. अब हमें D20080330 के लिए विभाजन विभाजन चाहते हैं.
ALTER TABLE TABLE_NAME SPLIT PARTITION D30001231 बदल टेबल TABLE_NAME विभाजन विभाजन D30001231
at (TO_DATE('20080401′, 'YYYYMMDD')) INTO (PARTITION D20080331, PARTITION D30001231); TO_DATE (पर ( ''20080401', 'YYYYMMDD) में) (D20080331 विभाजन, विभाजन D30001231);
fails with the error त्रुटि के साथ विफल रहता है
ORA-14080: partition cannot be split along the specified high bound. ORA-14080: विभाजन निर्दिष्ट उच्च बाध्य साथ विभाजित नहीं किया जा सकता है.
What am i missing in the above alter statement, any help would be appreciated क्या कर रहा हूँ ऊपर बयान, कोई मदद को बदलने में लापता मैं सराहना की जाएगी
November 8th, 2006 18:44 8 नवम्बर 2006 18:44
[...] 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. हालांकि, जब तुम जोड़ने या विभाजन विभाजन से एक मेज पर एक नया विभाजन बनाना चाहते हैं, ऐसे ORA प्रशासक के रूप में त्रुटियों मुठभेड़-14,074 हो सकती है. Other than that, Oracle error ORA-14080 can also happen, if you're not careful enough with the following symptom: [...] कि, Oracle त्रुटि ORA-14080 भी हो सकता है के अलावा, यदि आप निम्नलिखित लक्षण के साथ बहुत सावधानी से नहीं कर रहे हैं: [...]