Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a test environment for a database that I want to reload with new data at the start of a testing cycle. I am not interested in rebuilding the entire database- just simply "re-setting" the data.

What is the best way to remove all the data from all the tables using TSQL? Are there system stored procedures, views, etc. that can be used? I do not want to manually create and maintain truncate table statements for each table- I would prefer it to be dynamic.

share|improve this question

12 Answers

up vote 59 down vote accepted

For SQL 2005,

EXEC sp_MSForEachTable 'TRUNCATE TABLE ?'

Couple more links for 2000 and 2005/2008..

share|improve this answer
15  
You cannot truncate tables which have foreign keys, so this will only work if there are no foreign key constraints between tables (or they have been disabled). – marcj Oct 1 '08 at 12:31
agreed..i thought since he specifically asked for truncating tables, he already solved the problem with foreign keys.. – Gulzar Nazim Oct 1 '08 at 17:31
1  
Just keep running it and it will work eventually :) – Sam Aug 11 '09 at 21:22
5  
@Sam: No, it won't! The data in the tables is irrelevant. As long as there is a foreign key constraint referencing the table (even a disabled one) you can't truncate it. – TToni Dec 6 '10 at 15:34
1  
'EXEC sp_MSForEachTable 'DROP TABLE ?' Working great as well :) (delighting all tables from database) – bigb Apr 10 '12 at 11:44
show 3 more comments

When dealing with deleting data from tables which have foreign key relationships - which is basically the case with any properly designed database - we can disable all the constraints, delete all the data and then re-enable constraints

-- disable all constraints
EXEC sp_msforeachtable "ALTER TABLE ? NOCHECK CONSTRAINT all"

-- delete data in all tables
EXEC sp_MSForEachTable "DELETE FROM ?"

-- enable all constraints
exec sp_msforeachtable "ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all"

More on disabling constraints and triggers here

if some of the tables have identity columns we may want to reseed them

EXEC sp_MSforeachtable "DBCC CHECKIDENT ( '?', RESEED, 0)"

Note that the behaviour of RESEED differs between brand new table, and one which had had some data inserted previously from BOL:

DBCC CHECKIDENT ('table_name', RESEED, newReseedValue)

The current identity value is set to the newReseedValue. If no rows have been inserted to the table since it was created, the first row inserted after executing DBCC CHECKIDENT will use newReseedValue as the identity. Otherwise, the next row inserted will use newReseedValue + 1. If the value of newReseedValue is less than the maximum value in the identity column, error message 2627 will be generated on subsequent references to the table.

Thanks to Robert for pointing out the fact that disabling constraints does not allow to use truncate, the constraints would have to be dropped, and then recreated

share|improve this answer
8  
Disabling constraints will NOT allow truncation of tables referenced by a FOREIGN KEY constraint. The FK constraint has to be dropped. Please reply if I am wrong about this, but I have found no way to avoid dropping them. – Robert Claypool Jul 1 '09 at 16:24
Thanks Robert you are right. Thank you for pointing this out. I have updated my answer. – kristof Jul 2 '09 at 11:04
Just a typo "Table" keyword should not be there in this statement EXEC sp_MSForEachTable "DELETE FROM TABLE ?" .Correct version should be : EXEC sp_MSForEachTable "DELETE FROM ?" – Raghav Khunger Oct 26 '09 at 10:56
Thanks Raghav, corrected now. – kristof Oct 29 '09 at 11:05
2  
If you're using 2008 or newer SSMS, you'll probably want to add SET ROWCOUNT 0 at the beginning of your script since the default is to limit actions to 500 rows! You'll get frustrating errors like I did because not all data will have actually been deleted. – Sean Hanley Aug 17 '11 at 15:50

Truncating all of the tables will only work if you don't have any foreign key relationships between your tables, as SQL Server will not allow you to truncate a table with a foreign key.

An alternative to this is to determine the tables with foreign keys and delete from these first, you can then truncate the tables without foreign keys afterwards.

See http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=65341 and http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=72957 for further details.

share|improve this answer
Good point. Didn't think of that. I might be able to disable all of the constraints first and then re-enable them once the data has been removed. – Ray Vega Sep 30 '08 at 22:34

An alternative option I like to use with MSSQL Server Deveploper or Enterprise is to create a snapshot of the database immediately after creating the empty schema. At that point you can just keep restoring the database back to the snapshot.

share|improve this answer

Here's the king daddy of database wiping scripts. It will clear all tables and reseed them correctly:

exec sp_MSforeachtable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'  
exec sp_MSforeachtable 'ALTER TABLE ? DISABLE TRIGGER ALL'  
exec sp_MSforeachtable 'DELETE FROM ?'  
exec sp_MSforeachtable 'ALTER TABLE ? CHECK CONSTRAINT ALL'  
exec sp_MSforeachtable 'ALTER TABLE ? ENABLE TRIGGER ALL' 
exec sp_MSforeachtable 'IF NOT EXISTS (SELECT *
    FROM SYS.IDENTITY_COLUMNS
    JOIN SYS.TABLES ON SYS.IDENTITY_COLUMNS.Object_ID = SYS.TABLES.Object_ID
    WHERE SYS.TABLES.Object_ID = OBJECT_ID(''?'') AND SYS.IDENTITY_COLUMNS.Last_Value IS NULL)
    AND OBJECTPROPERTY(OBJECT_ID(''?''), ''TableHasIdentity'') = 1
    DBCC CHECKIDENT (''?'', RESEED, 0) WITH NO_INFOMSGS'

Enjoy, but be careful!

share|improve this answer
Unfortunately the above command fails if you have computed columns, since sp_MSforeachtable apparently has SET QUOTED_IDENTITY OFF in its body (link). UPDATE: The fix is to add "SET QUOTED_IDENTIFIERS on;" to the beginning of each statement that raises this error (as mentioned here) – Marchy Apr 24 at 1:47

Don't do this! Really, not a good idea.

If you know which tables you want to truncate, create a stored procedure which truncates them. You can fix the order to avoid foreign key problems.

If you really want to truncate them all (so you can BCP load them for example) you would be just as quick to drop the database and create a new one from scratch, which would have the additional benefit that you know exactly where you are.

share|improve this answer
Nice alternate approach here. – Sam Aug 11 '09 at 21:23

Make an empty "template" database, take a full backup. When you need to refresh, just restore using WITH REPLACE. Fast, simple, bulletproof. And if a couple tables here or there need some base data(e.g. config information, or just basic information that makes your app run) it handles that too.

share|improve this answer

It is much easier (and possibly even faster) to script out your database, then just drop and create it from the script.

share|improve this answer

This is one way to do it... there are likely 10 others that are better/more efficient, but it sounds like this is done very infrequently, so here goes...

get a list of the tables from sysobjects, then loop over those with a cursor, calling sp_execsql('truncate table ' + @table_name) for each iteration.

share|improve this answer

I do not see why clearing data would be better than a script to drop and re-create each table.

That or keep a back up of your empty DB and restore it over old one

share|improve this answer
The reason is the overhead of dropping and recreating the database on-disk files, logs, etc. is massively slow. Think wiping the database 1,000 times during a decent unit testing run. – Chris KL Oct 4 '12 at 2:25

Before truncating the tables you have to remove all foreign keys. Use this script to generate final scripts to drop and recreate all foreign keys in database. Please set the @action variable to 'CREATE' or 'DROP'.

share|improve this answer

select 'delete from ' +TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_TYPE='BASE TABLE'

where result come.

Copy and paste on query window and run the command

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.