第一种方法:
第一步就是找到子表的记录:
select a.constraint_name, a.table_name, b.constraint_name
from user_constraints a, user_constraints b
where a.constraint_type = ‘R‘
and b.constraint_type = ‘P‘
and a.r_constraint_name = b.constraint_name
and a.constraint_name = ‘FKXXX‘ --提示的报错信息FK...填入这里。
第二步:
删除子表中的所有记录。
第三步:
就可以轻松删除主表的记录啦。
第二种方法:
根据提示的name关掉。
alter table sysuser_role disable constraint FK671FDKRNUAA98IUUKGKM803VS cascade
alter table sysuser_role enable constraint FK671FDKRNUAA98IUUKGKM803VS
原文地址:https://www.cnblogs.com/jichi/p/10360855.html
时间: 2024-11-05 19:00:56