What is the difference among "dropping a table", "truncating a table" and "deleting all records" from a table.
342505-May-2011
Home / DeveloperSection / Interviews / What is the difference among "dropping a table", "truncating a table" and "deleting all records" from a table.
Amit Singh
05-May-2011Truncating: (Data alone deleted), Performs an automatic commit, Faster than delete
Delete : (Data alone deleted), Doesn’t perform automatic commit