How do you truncate all tables in a database using TSQL? - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T07:29:40Zhttp://stackoverflow.com/feeds/question/155246http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql6How do you truncate all tables in a database using TSQL?Ray Vegahttp://stackoverflow.com/users/48722008-09-30T21:49:17Z2009-10-29T11:02:58Z
<p>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. </p>
<p>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.</p>
http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/155270#1552700Answer by Ben Scheirman for How do you truncate all tables in a database using TSQL?Ben Scheirmanhttp://stackoverflow.com/users/33812008-09-30T21:55:16Z2008-09-30T21:55:16Z<p>This is <em>one</em> 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...</p>
<p>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.</p>
http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/155275#15527517Answer by Gulzar for How do you truncate all tables in a database using TSQL?Gulzarhttp://stackoverflow.com/users/43372008-09-30T21:56:32Z2008-09-30T22:04:58Z<p>For SQL 2005, </p>
<pre><code>EXEC sp_MSForEachTable 'TRUNCATE TABLE ?'
</code></pre>
<p>Couple more links for <a href="http://www.databasejournal.com/scripts/article.php/2226781" rel="nofollow">2000</a> and <a href="http://www.keithrull.com/2007/09/07/HowToTruncateMultipleTablesInSQLServerAndTheMagicOfSpMSforeachtable.aspx" rel="nofollow">2005/2008</a>..</p>
http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/155327#1553273Answer by marcj for How do you truncate all tables in a database using TSQL?marcjhttp://stackoverflow.com/users/239402008-09-30T22:11:07Z2008-09-30T22:11:07Z<p>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.</p>
<p>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.</p>
<p>See <a href="http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=65341" rel="nofollow">http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=65341</a> and <a href="http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=72957" rel="nofollow">http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=72957</a> for further details.</p>
http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/156813#15681312Answer by kristof for How do you truncate all tables in a database using TSQL?kristofhttp://stackoverflow.com/users/32412008-10-01T09:10:22Z2009-10-29T11:02:58Z<p>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</p>
<pre><code>-- 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"
</code></pre>
<p>More on disabling constraints and triggers <a href="http://stackoverflow.com/questions/123558/sql-server-2005-t-sql-to-temporarily-disable-a-trigger#123966">here</a></p>
<p>if some of the tables have identity columns we may want to reseed them</p>
<pre><code>EXEC sp_MSforeachtable "DBCC CHECKIDENT ( '?', RESEED, 0)"
</code></pre>
<p>Note that the behaviour of RESEED differs between brand new table, and one which had had some date inserted previously from <a href="http://msdn.microsoft.com/en-us/library/aa258817%28SQL.80%29.aspx" rel="nofollow">BOL</a>:</p>
<blockquote>
<p><strong>DBCC CHECKIDENT ('table_name', RESEED, newReseedValue)</strong></p>
<p>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.</p>
</blockquote>
<p>Thanks to <a href="http://stackoverflow.com/users/23566/robert-claypool">Robert</a> for pointing out the fact that disabling constraints does not allow to use truncate, the constraints would have to be dropped, and then recreated</p>
http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/161482#1614822Answer by Ben Liddicott for How do you truncate all tables in a database using TSQL?Ben Liddicotthttp://stackoverflow.com/users/02008-10-02T09:19:37Z2008-10-02T09:19:37Z<p>Don't do this! Really, not a good idea.</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/1075421#10754210Answer by Brian Spencer for How do you truncate all tables in a database using TSQL?Brian Spencerhttp://stackoverflow.com/users/1288562009-07-02T16:39:05Z2009-07-02T16:39:05Z<p>I do not see why clearing data would be better than a script to drop and re-create each table.</p>
<p>That or keep a back up of your empty DB and restore it over old one</p>
http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/1262252#12622520Answer by KeeperOfTheSoul for How do you truncate all tables in a database using TSQL?KeeperOfTheSoulhttp://stackoverflow.com/users/352332009-08-11T18:51:12Z2009-08-11T18:51:12Z<p>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.</p>
http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/1262640#12626400Answer by AlexKuznetsov for How do you truncate all tables in a database using TSQL?AlexKuznetsovhttp://stackoverflow.com/users/1089772009-08-11T20:11:21Z2009-08-11T20:11:21Z<p>It is much easier (and possibly even faster) to script out your database, then just drop and create it from the script.</p>
http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql/1262993#12629930Answer by onupdatecascade for How do you truncate all tables in a database using TSQL?onupdatecascadehttp://stackoverflow.com/users/1399382009-08-11T21:21:03Z2009-08-11T21:21:03Z<p>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.</p>