--禁用所有约束
exec sp_msforeachtable ’alter table ? nocheck CONSTRAINT all’
--再启用所有外键约束
exec sp_msforeachtable ’alter table ? check constraint all’