码迷,mamicode.com
首页 > 数据库 > 详细

在Oracle中删除所有强制性外键约束

时间:2014-10-27 12:59:23      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:on   type   用户   oracle   table   rom   user   c   rac   

--查询用户所有表的外键,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‘;

在Oracle中删除所有强制性外键约束

标签:on   type   用户   oracle   table   rom   user   c   rac   

原文地址:http://my.oschina.net/farces/blog/337654

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!