| TSQL -> | Truncate table instead of DELETE ALL |
Use TRUNCATE TABLE command instead of DELETE ALL FROM [table] if you need to
to remove all records:
Execution of TRUNCATE command in most cases will take less time than Deltetion especially for large tables. |