Truncate
TRUNCATE Allows us to delete all rows from a table without removing the table from the database
TRUNCATE TABLE My_Table
*TRUNCATE is minimally logged and will perform far faster than T-SQL DELETE will.
Backlinks
TRUNCATE Allows us to delete all rows from a table without removing the table from the database
TRUNCATE TABLE My_Table
*TRUNCATE is minimally logged and will perform far faster than T-SQL DELETE will.