Delete a large number of records in t-sql
TRUNCATE TABLE [tablename]
Truncating will remove all records from the table without logging each deletion.
TRUNCATE TABLE [tablename]
Truncating will remove all records from the table without logging each deletion.
Recent Comments