Difference between DELETE and TRUNCATE in oracle with example.

Опубликовано: 18 Июнь 2026
на канале: VCODE LOGIC
29
1

What is difference between delete and truncate in oracle.When to use delete in place of truncate.
Delete is dml command and truncate is ddl command .
Delete can be rollbacked but truncate can not be rollbacked.
Delete is Slower and Truncate is faster when we delete whole table data.