What is the difference between DELETE and TRUNCATE?
Answer Posted / brajendra arzare
Deletes perform normal DML. That is, they take locks on
rows, they generate redo and they require segments in the
UNDO tablespace. Deletes clear records out of blocks
carefully. If a mistake is made a rollback can be issued to
restore the records prior to a commit.
Truncates are DDL and truncate moves the High Water Mark
of the table back to zero. No row-level locks are taken, no
redo or rollback is generated.so they have the same effect
as a delete, but without all the overhead. Just one slight
problem: a truncate is a DDL command, so you can't roll it
back if you decide you made a mistake. (It's also true that
you can't selectively truncate -no "WHERE" clause is
permitted, unlike with deletes, of course).
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
What is the difference between a query and a report?
What is a file delimiter?
Can delete statement be rollbacked?
What is sql integrity?
What is difference between left and right outer join?
What is delimiter sql?
How do I sort a table in sql?
What is cross join example?
How many unique keys can a table have?
What is database white box testing and black box testing?
Is it possible to sort a column using a column alias?
What is a schema? How is it useful in sql servers?
What is sql entity?
What's the difference between a primary key and a clustered index?
What is a Mapplet?