Skip to content
Advertisement

T-SQL :: TRUNCATE or DELETE all tables in schema

I need to TRUNCATE or DELETE all tables in schema.

I found this code:

but on AdventureWorks it gives me:

So I found this alternative code:

But the result is the same:

How to TRUNCATE or DELETE all tables in schema?

Advertisement

Answer

You simply need to wrap your “delete from all the tables” script with a “drop all foreign keys” script at the beginning, and “re-create all foreign keys” script at the end. I show one way to do that here:

However, I would argue that it is much cleaner to just script out the database and empty objects from source control than spend all this time and effort deleting data from one table at a time.

Anyway an attempt at what you’re doing (if you truncate you don’t also need to checkident, I’m not sure I would ever use undocumented and unsupported procedures like sp_msforeachtable, and I also stay the heck away from INFORMATION_SCHEMA). Please try this on a test database.

Notes:

  • this is untested. As ludly as I can: try this on a test database.
  • this was meant to execute exactly once, so I don’t drop the #temp table (it may be useful to keep it alive long enough to troubleshoot if things go south)
  • PRINT is not necessarily going to show you the full command that is going to be executed, so it’s not a valid way to determine if the script is correct. It is just meant as a quick eyeball. If you really want to view the whole command, you’ll need something a little more elaborate.
  • this doesn’t handle indexed views, and I’m sure there are other limitations that might prevent you from truncating some tables (I’m thinking temporal or always encrypted with enclaves or in-mem), but I would resolve those separately and keep truncate around instead of “fixing” that by using a much more log-intensive delete.
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement