文档解释 ORA-02270: no matching unique or primary key for this column-list Cause: A REFERENCES clause in a CREATE/ALTER TABL
ORA-02270: no matching unique or primary key for this column-list
Cause: A REFERENCES clause in a CREATE/ALTER TABLE statement gives a column-list for which there is no matching unique or primary key constraint in the referenced table.
Action: Find the correct column names using the ALL_CONS_COLUMNS catalog view
ORA-02270错误表明oracle要求加载到父表的列列表未能匹配父表中任何唯一或主键,使其不存在唯一性平衡要求,这通常是一个严重的关系数据库设计上的问题。
ALTER TABLE TB_A ADD CONSTRAINT FK_TB_A FOREIGN KEY (B_ID);
我们可以通过Specifying the Parent Columns in a Foreign Key Constraint来处理,那就是确认在父表TB_A上有有必要的主键或唯一性非空的约束,以作为子表的外键约束:
如果TB_A没有唯一性约束,我们可以用如下语句建立:
ALTER TABLE TB_A
ADD CONSTRAINT TB_A_Unique
UNIQUE (A_ID);
然后就可以在子表上正确添加外键约束:
ALTER TABLE TB_A ADD CONSTRAINT FK_TB_A FOREIGN KEY (B_ID) REFERENCES TB_A (A_ID);
--结束END--
本文标题: ORA-02270: no matching unique or primary key for this column-list ORACLE 报错 故障修复 远程处理
本文链接: https://lsjlt.com/news/525948.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0