博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

11 2007 档案

摘要:SQLSERVER中禁用和启动约束和触发器 禁用所有外键约束 sp_msforeachtable "alter table ? nocheck CONSTRAINT all" --再启用所有外键约束 sp_msforeachtable "alter table ? check constraint all" 禁用所有trig... 阅读全文
posted @ 2007-11-29 10:39 黑米 阅读(1354) 评论(0) 推荐(0)

摘要:本代码适用于: SQLSERVER2000/2005 SQL语句如下: select c.name, t.name as type, c.length ,(case t.name when 'nvarchar' then c.length/2 when 'nchar' then c.length/2 else c.length end) as reallength from syscolumns c join systypes t on c.xtype=t.xtype where t.name 'sysname' and c.id=object_id('Table1') 阅读全文
posted @ 2007-11-06 11:12 黑米 阅读(1240) 评论(4) 推荐(0)