Created
March 10, 2015 22:41
-
-
Save jeremybeavon/e319f463f05b898571ea to your computer and use it in GitHub Desktop.
Delete all data from database
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 referential integrity | |
EXEC sp_MSForEachTable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL' | |
GO | |
EXEC sp_MSForEachTable 'DELETE FROM ?' | |
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