Truncating all tables is not easy by default on MSSQL so I have search the net and found one. Just open up a new query and use the following codes:
Use databaseName
GOEXEC sp_MSForEachTable ‘TRUNCATE TABLE ?’
GO
It will truncate all the tables under the databaseName DB.
God Bless!
Thanks,
Thomie