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

SQLServer 删除所有表的外键约束

时间:2014-07-03 09:19:58      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   width   os   for   

DECLARE c1 cursor for    
select alter table [+ object_name(parent_obj) + ] drop constraint [+name+];
from sysobjects
where xtype = F
open c1declare @c1 varchar(8000)
fetch next from c1 into @c1while(@@fetch_status=0)
begin
exec(@c1)
fetch next from c1 into @c1
endclose
c1deallocate c1

 

SQLServer 删除所有表的外键约束,布布扣,bubuko.com

SQLServer 删除所有表的外键约束

标签:style   blog   color   width   os   for   

原文地址:http://www.cnblogs.com/gaobing/p/3818370.html

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