You issue the following command to drop the products table:
SQL> DROP TABLE products;
Which three statements are true about the implication of this command?
A.
All data along with the table structure is deleted.
B.
A pending transaction in the session is committed.
C.
All indexes on the table remain but they are invalidated.
D.
All views and synonyms remain but they are invalidated.
E.
All data in the table is deleted but the table structure remains.
Explanation:
DROP is a DDL command. Therefore all transactions in progress will be committed.
Dropping a table means also removing the table structure. The right command for answer E would be TRUNCATE.
see also: https://docs.oracle.com/cd/B28359_01/server.111/b28310/tables010.htm
A delete would also work for the option E (after a commit, of course)
Correct A,B,D