Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Creare, aggiungere o Spalato Oracle Database partizione non riesce a ORA-14080 Errore
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 tabella di partizionamento è importante per ottenere prestazioni ottimali della banca di dati, in quanto consente di Oracle per il processo specifico e independat partizione o in parte, che è di dimensioni più piccole, invece di tutta la tabella completa o in una banca dati. However, when you want to create a new partition to a table by adding or splitting partition, administrator may encounter errors such as Tuttavia, quando si desidera creare una nuova partizione a una tabella con l'aggiunta di partizione o del frazionamento, amministratore possono incontrare errori come ad esempio ORA-14074 . Other than that, Oracle error ORA-14080 can also happen, if you’re not careful enough with the following symptom: Diversa da quella, Oracle errore ORA-14080 Può anche accadere, se non sei abbastanza attento con i seguenti sintomi:
ORA-14080: partition cannot be split along the specified high bound ORA-14080: partizione non può essere frazionato lungo la specificato alta vincolata
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. La causa per ORA-14080 errore è dovuto a Oracle utente ha tentato di dividere un lungo una partizione vincolata che raccoglie sia superiore a quello della partizione da dividere o inferiore a quello di una partizione immediatamente precedente a quella di essere diviso. 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. In altre parole, il valore che è stato specificato in modo da suddividere tra la partizione non è corretto, e in tutto o in parte la gamma di valori della partizione è stato assegnato o situato in una partizione esistente definiti nel database.
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. Per risolvere il problema, la soluzione o soluzione sarà quella di garantire che il vincolati lungo la quale una partizione deve essere diviso raccoglie più basso di quello della partizione per essere frazionato e superiore che quella di una partizione immediatamente precedente a quella di essere diviso. 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. La partizione vuole essere aggiunto o scomposto deve ha valore che sono meno rispetto al suo più alto valore più vicino partizione, ma che ha valore superiore al limite massimo per il suo valore inferiore più vicino partizione.
For example, 3 partitions existed with high value as below: Per esempio, 3 partizioni esisteva con alto valore come qui di seguito:
Partition Name High Value Nome partizione ad alto valore
————– ———- ----- ----
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. Se si desidera aggiungere una nuova partizione di dividere con p3 partizione, non è possibile specificare il valore di 70 o 30, in quanto entrambi sono fuori vincolati. Specify 30 if you want to split the partition of p3. 30 specificare se volete dividere la partizione di P3. For 70, you have to simply create or add new partition in alter table SQL statement command. Il 70, dovete semplicemente creare o aggiungere nuove partizioni in ALTER TABLE SQL comando.
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 Database amministratore può utilizzare il seguente comando per recuperare un grafico come sopra per determinare il possibile valore sbagliato che causano l'errore:
SELECT partition_name, high_value SELECT partition_name, high_value
FROM dba_tab_partitions DA dba_tab_partitions
WHERE table_name = ‘table_name’ DOVE table_name = 'table_name'
ORDER BY partition_name ORDINA PER partition_name
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Questa è una pagina tradotta macchina che è fornito "così com'è" senza alcuna garanzia. Machine translation may be difficult to understand. Traduzione automatica può essere difficile da capire. Please refer to Si prega di fare riferimento a original English article articolo originale inglese whenever possible. quando possibile.
Share and contribute or get technical support and help at Condividere e contribuire o ottenere supporto tecnico e assistenza in My Digital Life Forums La mia vita digitale Forum .
Related Articles Articoli correlati
- Oracle ORA-14074 Create or Add New Partition Fails Error Oracle ORA-14074 creare o aggiungere nuova partizione non errore
- Oracle Database Import Error 3113/3114 Database Oracle errore di importazione 3113/3114
- Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error Oracle ORA-01658 Impossibile creare INIZIALE Estensione per il segmento in errore Tablespace
- ORA-01502 Oracle Index in Unusable State ORA-01502 Indice di Oracle in Unusable Stato
- Oracle Database Link Oracle database di link
- ORA-00942 Table or View Does Not Exist Oracle Error ORA-00942 tabella o visualizzare non esiste errore di Oracle
- ORA-02449 Oracle Drop Table Error ORA-02449 Oracle goccia tabella di errore
- How to Rename or Move Oracle Tablespace Datafile to Another Location Come rinominare o spostare Oracle tablespace archivio dei dati in un'altra posizione
- ORA-25153 Temporary Tablespace is Empty Error in Oracle ORA-25153 temporanea Tablespace è Vuoto Errore in Oracle
- View and Retrieve Oracle Database Link Details Visualizzare e recuperare i database Oracle link dettagli
































