Exam 1z0-071 All QuestionsBrowse all questions from this exam
Question 14

You own table DEPARTMENTS, referenced by views, indexes, and synonyms.

Examine this command which executes successfully:

DROP TABLE departments PURGE;

Which three statements are true? (Choose three.)

    Correct Answer: A, B, E

    The DROP TABLE departments PURGE command removes the DEPARTMENTS table from the database, along with all indexes on it. Additionally, it ensures that the table cannot be recovered and the action cannot be rolled back. Although views and synonyms referencing the table become invalid, they are not removed by this command.

Discussion
Lee_jong_sukOptions: ABE

ABE. Note: Synoyms and views will get invalid, Indexes will be dropped along with the table and data will be purged and free space will be regained, dropped table can not be recovered even if you use flashback table command

Rik92Options: ABE

ABE are correct. Views and synonyms are not dropped with the table

subtype11Options: ABE

In ORACLE SQL, you own table DEPARTMENTS, referenced by views, indexes, and synonyms. Examine this command which executes successfully: DROP TABLE departments PURGE; Which three statements are true? (Choose three.) A. It will remove the DEPARTMENTS table from the database. (True) B. It will drop all indexes on the DEPARTMENTS table. (True) C. It will remove all views that are based on the DEPARTMENTS table. (False, it will not remove the views that are based on the DEPARTMENTS table) D. It will remove all synonyms for the DEPARTMENTS table. (False, it will not remove the synonyms for the DEPARTMENTS table) E. Neither can it be rolled back nor can the DEPARTMENTS table be recovered. (True) F. It will delete all rows from the DEPARTMENTS table, but retain the empty table. (False, it will delete all rows and the table itself)

alelejajaOptions: ABE

ABE correct answers

NelitaOptions: ABE

ABE IS CORRECT.

kuffOptions: ABE

ABE is the answer

Orxan_HOptions: ABE

ABE is correct answers

Ac37Options: ABE

ABE is correct

jfc1Options: ABE

https://docs.oracle.com/database/121/SQLRF/statements_9003.htm#SQLRF01806

alic_alexOptions: ADE

A,D,E - correct answer

subtype11

https://docs.oracle.com/cd/E18283_01/server.112/e17120/tables010.htm

heoj10272Options: ABE

A, B, E https://docs.oracle.com/database/121/SQLRF/statements_9003.htm#SQLRF01806