Created
September 1, 2015 13:44
-
-
Save tompazourek/b929933dd94a73bbd5f2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Disable all table constraints | |
ALTER TABLE MyTable NOCHECK CONSTRAINT ALL | |
-- Enable all table constraints | |
ALTER TABLE MyTable CHECK CONSTRAINT ALL | |
-- Disable single constraint | |
ALTER TABLE MyTable NOCHECK CONSTRAINT MyConstraint | |
-- Enable single constraint | |
ALTER TABLE MyTable CHECK CONSTRAINT MyConstraint |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment