Which three statements are true about the implication o…

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?

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:
A: The DROP TABLE statement moves a table or object table to the recycle bin.
B: If a user issues a DDL (CREATE, ALTER, or DROP) or DCL (GRANT or REVOKE) command, the
transaction in progress (if any) will
Incorrect:
Not C: Dropping a table invalidates dependent objects, such as indexes and constraints.
http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_9003.htm



Leave a Reply 0

Your email address will not be published. Required fields are marked *