ORA-12984: cannot drop partitioning column
Cause: An attempt was made to drop a column used as the partitioning key.
Action: This action is not allowed.
ORA-12984 :不能删除分区列
ORA-12984表示您尝试从表中删除分区列,这是不允许的。
常见情况:
ORA-12984通常发生在尝试使用ALTER TABLE语句删除表中用于分区的列,但也可能发生在尝试使用DROP PARTITION CLAUSE来删除分区时。
如果想要从表中删除分区列,您需要首先使用DROP PARTITION子句将该分区删除,然后再使用ALTER TABLE语句删除分区列。