Skip to content

Instantly share code, notes, and snippets.

@ahmeturganci
Created August 4, 2017 06:35
Show Gist options
  • Save ahmeturganci/302d61989a80629dc9f7113f1f32cec1 to your computer and use it in GitHub Desktop.
Save ahmeturganci/302d61989a80629dc9f7113f1f32cec1 to your computer and use it in GitHub Desktop.
database all data delete
EXEC sp_MSForEachTable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'
GO
EXEC sp_MSForEachTable 'DELETE FROM ?'
GO
-- enable referential integrity again
EXEC sp_MSForEachTable 'ALTER TABLE ? WITH CHECK CHECK CONSTRAINT ALL'
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment