DELETE
- Deletes some or all rows of a table
- It is DML
- Commited
- Uncommitted deletes can be rolled back
- Yes, DELETE triggers fired
- Deletes all rows of a table
- It is DDL
- Not Commited
- Cannot be rolled back – once truncated, gone forever
- No triggers fired
- Removes all rows and also the table definition, including indexes, triggers, grants, storage parameters
- It is DDL
- Not Commited
- A dropped table can be reinstated from the recycle bin
- No triggers fired