can anybody provide me list of all diffrences between truncate and delete in SQL server?

link|improve this question
1  
thanks a lot i found answer. – VenkatReddy.Ravu May 4 '10 at 6:47
feedback

1 Answer

up vote 14 down vote accepted

You should google it before asking.

Truncate

  1. Truncate removes all the references from database.
  2. Fast
  3. No entry in transaction log.
  4. Cannot be recovered if removed once.
  5. Page refrences are cleared.
  6. All or none
  7. Identity column gets re-initialized to seed
  8. Truncate is DDL

Truncate Table tblName

No contidion can be given

Delete

  1. Entries are made at Transaction log.
  2. Recoverable
  3. Slow
  4. Per record based deletion
  5. References are mainained in page
  6. Identity starts from its previous position
  7. DML
Delete FROM tableName

None of the two effects any structure to table. All references must be removed before performing any of the operation, although it doesn't applies to delete when used with Cascade = true for delete

link|improve this answer
1  
Right. Truncate is DDL, Delete is DML. – Konerak May 4 '10 at 6:47
what about table structures? – VenkatReddy.Ravu May 4 '10 at 6:49
dont hesitate im new to sql server and even learner. – VenkatReddy.Ravu May 4 '10 at 6:49
2  
... also, TRUNCATE cannot be used on a table referenced by a foreign key constraint. – Joe May 4 '10 at 6:49
Thx for updating answers, me too editing your comments in answer to make it more complete – Shantanu Gupta May 4 '10 at 6:51
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.