oracle 错误报告- ORA-02291:违反了完整性约束(SCPOMGR.FCSTDRAFT_DFU_FK1)-未找到父项[已关闭]

332nm8kg  于 2023-04-20  发布在  Oracle
关注(0)|答案(1)|浏览(185)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
14小时前关闭
Improve this question
我需要从一个表插入数据到另一个表,但我得到这个错误:
错误报告- ORA-02291:完整性约束
(SCPOMGR.FCSTDRAFT_DFU_FK1)被违反-未找到父项
第一个表的主键是:

Column
a
b
c
d
e
f
g

第二个表的主键也是

a
b
c
d
e
f
g
vaj7vani

vaj7vani1#

好吧,你提供的信息有限,很难给予一个明确的答案,但这可以让你走上正确的道路。
该错误表示您要插入的表中的某列具有外键约束。您试图在该列中插入一个值,而该值在引用的表中没有匹配的记录。
要找出此约束引用的表,可以运行以下查询:

select table_name from all_constraints where constraint_name = (
select r_constraint_name from all_constraints where constraint_name = 'FCSTDRAFT_DFU_FK1');

相关问题