文档解释
ORA-42019: partition cannot be redefined online because of incompatible partitioning of interim table
Cause: both original and interim tables are partitioned, or original table is composite-partitioned but interim table is non-partitioned.
Action: Ensure that the interim table has compatible partitioning with the original table. For example, if the original table is partitioned, the interim table should be non-partitioned. If the original table is composite-partitioned, the interim table should be partitioned.
这是由于临时表(interim table)的分区原则不兼容于在线重新定义分区而导致的一个错误。
官方解释
ORA-42019:由于临时表(interim table)的分区不兼容,因此无法在线重新定义分区。 Oracle Database可以重新定义属于单个表的已命名的分区,以便更改表的数据类型、表注释或分区注释,但临时表的分区原则与此不同。
常见案例
ORA-42019通常在您试图重新定义带有临时表分区原则的表时发生。 例如,在将连续映射表(CTAS)视图内的表拆分为本地分区和全局分区时,可能会出现ORA-42019错误。
一般处理方法及步骤
1.必要时,提取原始数据到安全存储位置,例如文件。
2.删除临时表中的分区原则。
3.重新定义分区。
4.选择性地从安全存储位置恢复数据。
5.重新创建临时表分区原则。