Skip to content

Instantly share code, notes, and snippets.

@otf
Forked from anonymous/gist:5230443
Created March 24, 2013 03:57
Show Gist options
  • Save otf/5230447 to your computer and use it in GitHub Desktop.
Save otf/5230447 to your computer and use it in GitHub Desktop.
-- disable referential integrity
EXEC sp_MSForEachTable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'
GO
EXEC sp_MSForEachTable 'TRUNCATE TABLE ?'
GO
-- enable referential integrity again
EXEC sp_MSForEachTable 'ALTER TABLE ? CHECK CONSTRAINT ALL'
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment