博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
恢复和去掉所有表约束
阅读量:6333 次
发布时间:2019-06-22

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

--去掉所有表约束 declare @n nvarchar(max) declare allTable cursor for select name from sys.tablesopen allTable fetch next from allTable into @nwhile @@fetch_status = 0     begin                exec ('ALTER TABLE '+@n+' NOCHECK CONSTRAInT ALL')        exec ('ALTER TABLE '+@n+' DISABLE TRIGGER ALL')            print('已经去掉表'+@n+'的约束')         fetch next from allTable into @n         endclose allTabledeallocate allTable
--恢复所有表的约束 declare @n nvarchar(max) declare allTable cursor for select name from sys.tablesopen allTable fetch next from allTable into @nwhile @@fetch_status = 0     begin                exec ('ALTER TABLE '+@n+' CHECK CONSTRAInT ALL')        exec ('ALTER TABLE '+@n+' enABLE TRIGGER ALL')            print('已经恢复表'+@n+'的约束')         fetch next from allTable into @n         endclose allTabledeallocate allTable

 

 

转载地址:http://zsioa.baihongyu.com/

你可能感兴趣的文章
【Magedu】Week01
查看>>
写给MongoDB开发者的50条建议Tip25
查看>>
为什么要让带宽制约云计算发展
查看>>
[iOS Animation]-CALayer 绘图效率
查看>>
2012-8-5
查看>>
VS中ProjectDir的值以及$(ProjectDir)../的含义
查看>>
我的友情链接
查看>>
PHP实现排序算法
查看>>
Business Contact Mnanager for Outlook2010
查看>>
9种用户体验设计的状态是必须知道的(五)
查看>>
解决WIN7下组播问题
查看>>
陈松松:视频营销成交率低,这三个因素没到位
查看>>
vmware nat模式原理探究,实现虚拟机跨网段管理
查看>>
JavaSE 学习参考:集合运算
查看>>
【Signals and Systems】 SYLLABUS
查看>>
RH135-2-command-line-interface
查看>>
浅谈OS
查看>>
mac下开启docker API远程调用
查看>>
tar 命令的详解
查看>>
Cisco路由器安全配置
查看>>