Skip to content

Instantly share code, notes, and snippets.

@koffisani
Created December 26, 2016 10:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koffisani/f4e9507a86c4862fb1168700d9d5f938 to your computer and use it in GitHub Desktop.
Save koffisani/f4e9507a86c4862fb1168700d9d5f938 to your computer and use it in GitHub Desktop.
Deactivate all constraints on tables in an SQL Server database.
USE <nom_database> ;
EXEC sp_msforeachtable "ALTER TABLE ? NOCHECK CONSTRAINT all";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment