ORA-42020: partition cannot be redefined online because of unsupported type of interim table

文档解释

ORA-42020: partition cannot be redefined online because of unsupported type of interim table

Cause: An unsupported type of interim table was provided during the partition redefinition. Currently the following types of interim tables are not supported:
– a nested table or has nested-table columns
– an external table
– part of cluster
– contains LOB shared segments

Action: Do not use unsupported types of interim tables.

ORA-42020:由于不支持的临时表类型,无法在线重新定义分区。

官方解释

ORA-42020: 这是一个程序错误,表明你尝试在更改分区时,存在一个不支持的临时表类型。数据库无法完成更改,因此引发了ORA-42020错误。

常见案例

ORA-42020的最常用的场景是尝试使用局部索引来完成分区标记类型的修改。请注意,由于局部索引不能用于修改分区标记类型,因此会引发ORA-42020错误。

一般处理方法及步骤

1、检查是否存在任何临时表类型,如果是,则先删除任何临时表类型。

2、重新定义分区,确保设置将更改应用于某个索引或将创建新索引。

3、确保分区类型是ALTER TABLE,而不是ALTER INDEX。

4、重新定义表,使用新的分区类型进行修改操作。

5、确保表中的索引类型正确,并提交更改。

你可能感兴趣的