How to truncate selective tables in SQL Server 2008, I have a list of tables which may be excluded during truncate process.
Can anybody guide me?
How to truncate selective tables in SQL Server 2008, I have a list of tables which may be excluded during truncate process.
Can anybody guide me?
You can simply run
TRUNCATE TABLE yourTableName
. If you have a list you can run the following: