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.