For disabling all the constrains (foreign keys) of a Database
use this command to disable all the constraints:
EXEC sp_MSforeachtable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'
and after deletion or any operation on database set the constraints in by this command
EXEC sp_MSforeachtable 'ALTER TABLE ? CHECK CONSTRAINT ALL'
Comments
Post a Comment