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. जब भी संभव है.


2 Responses to “Oracle ORA-14074 Create or Add New Partition Fails Error” 2 उत्तर को "Oracle ORA-14074 बनाएँ या नई विभाजन जोड़ें त्रुटि विफल रहता है"

  1. Raj राज
    April 7th, 2008 18:44 7 अप्रैल 2008 18:44
    2 2

    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 क्या कर रहा हूँ ऊपर बयान, कोई मदद को बदलने में लापता मैं सराहना की जाएगी

  2. Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error » My Digital Life बनाने के लिए, जोड़ें या भाजित Oracle डाटाबेस के विभाजन के साथ विफल रहता है ORA-14,080 त्रुटि »मेरे डिजिटल जीवन
    November 8th, 2006 18:44 8 नवम्बर 2006 18:44
    1 1

    [...] 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 भी हो सकता है के अलावा, यदि आप निम्नलिखित लक्षण के साथ बहुत सावधानी से नहीं कर रहे हैं: [...]

Leave a Reply एक उत्तर दें छोड़ दो

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> आप इन टैग्स: <a href="" उपयोग title=""> <abbr title=""> <acronym कर सकते हैं <blockquote title=""> <b> cite=""> <cite> <code> <डेल DateTime = ""> <em> <i> <q cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. टिप्पणी की सुविधा है विकलांग गया है की सदस्यता लें. To receive notification of latest comments posted, subscribe to सदस्यता के लिए नई टिप्पणियों की सूचना प्राप्त पोस्ट किया है, My Digital Life Comments RSS feed मेरे डिजिटल जीवन टिप्पणियाँ आरएसएस फ़ीड or या register to receive रजिस्टर प्राप्त करने के लिए new comments in daily email digest. दैनिक ईमेल में नई टिप्पणियाँ डाइजेस्ट.
Custom Search

New Articles नए लेख

Incoming Search Terms for the Article के लिए खोजें शर्तें आने अनुच्छेद

ORA-14074 ORA-14074 - -- ORA-14074: partition bound must collate higher than that of the last partition ORA-14074: पिछले विभाजन की तुलना में अधिक मुक़ाबला करना चाहिए बाध्य विभाजन - -- ora-14074 partition bound must collate higher than that of the last partition ora-14074 पिछले विभाजन की तुलना में अधिक मुक़ाबला करना चाहिए बाध्य विभाजन - -- split partition syntax विभाजन विभाजन वाक्यविन्यास - -- add partition oracle विभाजन Oracle जोड़ें - -- oracle add partition Oracle विभाजन जोड़ें - -- ORA 14074 14,074 ORA - -- CREATE PARTITION ORACLE विभाजन पैदा ओरेकल - -- oracle add partition to existing table Oracle मौजूदा तालिका के विभाजन जोड़ें - -- oracle ORA-14074 Oracle ORA-14074 - -- crear particion oracle crear particion Oracle - -- oracle create partition Oracle विभाजन बनाना - -- crear particion en oracle crear एन particion Oracle - -- ORA-14080: partition cannot be split along the specified high bound ORA-14080: विभाजन निर्दिष्ट ही उच्च साथ विभाजित नहीं किया जा सकता है - -- ORA-14074 MAXVALUE MAXVALUE ORA-14074 - -- ALTER TABLE SPLIT PARTITION maxvalue बदल टेबल विभाजन विभाजन maxvalue - -- Oracle partition maxvalue Oracle विभाजन maxvalue - -- how to add partition in oracle कैसे Oracle में विभाजन जोड़ने के लिए - -- oracle sql create partition Oracle SQL विभाजन बनाना - -- Oracle error 14074 Oracle 14,074 त्रुटि - -- ORA - 14074 ORA - 14,074 - -- 14074 14074 - -- ora-14074 oracle ora-14074 Oracle - -- oracle 14074 14,074 Oracle - -- ORA-14074: ORA-14074: - -- oracle split partition maxvalue Oracle विभाजन विभाजन maxvalue - -- sql error ora-14074 partition bound must collate higher than that of the last partition SQL त्रुटि ora-14074 पिछले विभाजन की तुलना में अधिक मुक़ाबला करना चाहिए बाध्य विभाजन - -- add new partition in oracle Oracle में नया विभाजन जोड़ें - -- oracle partition Oracle विभाजन - -- create new partition Oracle नया विभाजन बनाने के Oracle - -- crear particiones oracle crear particiones Oracle - -- PARTITION MAXVALUE विभाजन MAXVALUE - -- crear particiones en oracle Oracle एन crear particiones - -- oracle add new partition Oracle नया विभाजन जोड़ें - -- ORACLE ADD PARTITION SYNTAX ओरेकल जोड़ें विभाजन वाक्यविन्यास - -- oracle crear particiones Oracle crear particiones - -- "ORA-14074: partition bound must collate higher than that of the last partition" "ORA-14074: पिछले विभाजन की तुलना में अधिक मुक़ाबला करना चाहिए बाध्य विभाजन" - -- add partition maxvalue विभाजन maxvalue जोड़ें - -- add partition to Oracle table Oracle के विभाजन जोड़ने के तालिका - -- add partition syntax विभाजन वाक्यविन्यास जोड़ें - -- alter table create partition oracle बदल तालिका विभाजन बनाने के गूढ़ - -- sql add partition SQL विभाजन जोड़ें - -- add partition syntax in oracle Oracle में विभाजन वाक्यविन्यास जोड़ें - -- ora-14080 partition cannot be split along the specified high bound ora-14080 विभाजन निर्दिष्ट ही उच्च साथ विभाजित नहीं किया जा सकता है - -- oracle split partition syntax Oracle विभाजन विभाजन वाक्यविन्यास - -- SQL Error code 14074 SQL त्रुटि 14,074 कोड - -- SQL Error code: 14074 SQL त्रुटि कोड: 14,074 - -- add partition in oracle Oracle में विभाजन जोड़ें - -- oracle alter table PARTITION Oracle विभाजन तालिका में परिवर्तन - -- SQL Error: ORA-14074: partition bound must collate higher than that of the last partition SQL त्रुटि: ORA-14074: पिछले विभाजन की तुलना में अधिक मुक़ाबला करना चाहिए बाध्य विभाजन - --