Skip to content

Instantly share code, notes, and snippets.

@bitsprint
Created August 1, 2013 12:54
Show Gist options
  • Select an option

  • Save bitsprint/6131067 to your computer and use it in GitHub Desktop.

Select an option

Save bitsprint/6131067 to your computer and use it in GitHub Desktop.
Truncate all the tables
EXEC sp_MSForEachTable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'
GO
EXEC sp_MSForEachTable 'TRUNCATE TABLE ?'
GO
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