ORA-14652: reference partitioning foreign key is not supported
Cause: The specified partitioning foreign key was not supported for reference-partitioned tables. All columns of the partitioning foreign key must be constrained NOT NULL with enabled, validated, and not deferrable constraints. Furthermore, a virtual column cannot be part of the partitioning foreign key.
Action: Correct the statement to specify a supported partitioning foreign key.
Oracle Database通常会遇到ORA-14652错误,此错误表示参考分区外键不受支持。
此错误适用于:Oracle Database – Enterprise Edition – Version 11.1.0.7以及以前版本
本文档提供了可以有关此Oracle Database错误:”ORA-14652″的指示和操作指南。
ORA-14652:reference partitioning外键不受支持
错误消息:
ORA-14652: reference partitioning foreign key is not supported
原因:
在Reference Partitioning中,foreign key is not supported.
1.首先,检查数据库的版本,兼容性,是否是Reference Partition,确认表的partitioning method,避免发生此错误。
2.可以使用alter session 命令,在维护作业运行前,针对此问题设置会话参数(_partition_pruning_enabled设置为false)。
3.可以使用特定的sql属性(hint),指定查询语句要对两个表表进行join操作。
4.不要建立外键约束,而是使用sql约束,或者使用其他非外键解决方案(又称application reference integrity )。
5.可以尝试使用Reference Partitioning类型,以避免发生此问题。