Oracle Database SQL — Question 15

Examine this command:

TRUNCATE TABLE test;

Table truncated.

Which two are true? (Choose two.)

Answer options

Correct answer: D, E

Explanation

Option D is correct because once the TRUNCATE command is executed, the removed rows cannot be reinstated using ROLLBACK, as TRUNCATE is a DDL command. Option E is also correct because TRUNCATE removes all records in the TEST table without logging individual row deletions, effectively clearing the table.