ORA-39266: Cannot alter unpartitioned table to partitioned.

文档解释

ORA-39266: Cannot alter unpartitioned table to partitioned.

Cause: DBMS_METADATA_DIFF was comparing two tables, one unpartitioned, the other partitioned. There is no SQL ALTER statement to partition an unpartitioned table.

Action: The difference cannot be eliminated with an SQL ALTER statement.

ORA-39266:不能将未分区表更改为分区表。

这是由Oracle数据库在尝试将未分区表更改为分区表时引发的一个异常。当尝试以这种方式更改没有分区的表时,Oracle将引发该错误。

一般处理方法及步骤

1. 将原始表复制到新表中,并声明将新表更改为分区表。

2. 将数据从原始表转移到新更改的分区表中。

3. 将原始表删除,并重命名新表。

4. 更新语句以引用更改后的分区表。

你可能感兴趣的