摘要: 1.查询出所有外键禁用的sql select 'ALTER TABLE [' + b.name + '] NOCHECK CONSTRAINT ' + a.name +';' as 禁用约束 from sysobjects a ,sysobjects b where a.xtype ='f' and 阅读全文
posted @ 2020-08-04 13:17 求学者s 阅读(3058) 评论(1) 推荐(0)