How to delete all rows from all tables in a SQL Server database?
|
|
Note that TRUNCATE won't work if you have any referential integrity set. In that case, this will work:
|
|||||||||||||||
|
|
|
|||||||
|
|
if you want to delete the whole table, you must follow the next SQL instruction
|
||||
|
|
|
I had to delete all the rows and did it with the next script:
Hope this helps! |
|||
|
|
|
You could delete all the rows from all tables using an approach like Rubens suggested, or you could just drop and recreate all the tables. Always a good idea to have the full db creation scripts anyway so that may be the easiest/quickest method. |
|||||||
|
|
Set nocount on Exec sp_MSForEachTable 'Alter Table ? NoCheck Constraint All' Exec sp_MSForEachTable ' If ObjectProperty(Object_ID(''?''), ''TableHasForeignRef'')=1 Begin -- Just to know what all table used delete syntax. Print ''Delete from '' + ''?'' Delete From ? End Else Begin -- Just to know what all table used Truncate syntax. Print ''Truncate Table '' + ''?'' Truncate Table ? End ' Exec sp_MSForEachTable 'Alter Table ? Check Constraint All' |
|||
|
|
