ORA-14030 during Conversion of Non Partitioned Table To Partitioned Table Online Using ORA_ARCHIVE_STATE Column
(Doc ID 2769035.1)
Last updated on JANUARY 19, 2022
Applies to:
Oracle Database - Enterprise Edition - Version 12.2.0.1 and laterInformation in this document applies to any platform.
Symptoms
CREATE TABLE <TABLE NAME> (
no NUMBER PRIMARY KEY,
name VARCHAR2(30),
status Varchar2(10)
) enable row movement row archival;
alter TABLE <TABLE NAME> modify
PARTITION BY LIST (ORA_ARCHIVE_STATE) (
PARTITION active_p VALUES (0) tablespace active,
PARTITION archive_p VALUES (1) tablespace archive compress for all operations) online;
ERROR at line 2:
ORA-14030: non-existent partitioning column in CREATE TABLE statement
Changes
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Changes |
Cause |
Solution |
References |