博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在Oracle中删除所有强制性外键约束
阅读量:6105 次
发布时间:2019-06-21

本文共 331 字,大约阅读时间需要 1 分钟。

  hot3.png

--查询用户所有表的外键,owner条件为user

select * from user_constraints c where c.constraint_type = 'R' and c.owner = 'A';
--删除用户所有表的外键,owner条件为user

select 'alter table '||t.table_name||' drop constraint '||t.constraint_name||';' from user_constraints t

where t.constraint_type='R' and c.owner = 'A';

转载于:https://my.oschina.net/farces/blog/337654

你可能感兴趣的文章