ORA-22894: cannot add constraint on existing unscoped REF columns of non-empty tables ORACLE 报错 故障修复
文档解释
ORA-22894: cannot add constraint on existing unscoped REF columns of non-empty tables
Cause: An attempt was made to add a constraint to existing unscoped REF columns of a table which contains one or more rows.
Action: Remove the constraint specification or add the constraint after emptying the table.
ORA-22894:不能在非空表上现有未约束REF列上添加约束
官方解释
该错误消息在向现有REF列添加约束时报告。
常见案例
当用户试图在现有REF列上添加约束时报告此错误,如下所示:
ALTER TABLE table_name
ADD CONSTRAINT constraint_name
FOREIGN KEY ref_column_name REFERENCES …;
一般处理方法及步骤
1.如果此表包含数据,则应使用“enable novalidate”选项创建约束。
2.更新数据,以确保约束条件得到满足。
3.从新创建约束:
ALTER TABLE table_name
ADD CONSTRAINT constraint_name FOREIGN
KEY ref_column_name REFERENCES …
enable validate;
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341