1z0-071 Exam QuestionsBrowse all questions from this exam

1z0-071 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.)

Show Answer
Correct Answer: ABE

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

12 comments
Sign in to comment
Lee_jong_sukOptions: ABE
Dec 8, 2023

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

subtype11Options: ABE
Jan 29, 2023

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)

Rik92Options: ABE
Jun 26, 2023

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

heoj10272Options: ABE
Oct 12, 2022

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

subtype11
Jan 29, 2023

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

alic_alexOptions: ADE
Mar 3, 2023

A,D,E - correct answer

jfc1Options: ABE
Mar 6, 2023

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

Ac37Options: ABE
Apr 1, 2023

ABE is correct

Orxan_HOptions: ABE
Apr 16, 2023

ABE is correct answers

kuffOptions: ABE
May 8, 2023

ABE is the answer

NelitaOptions: ABE
May 10, 2023

ABE IS CORRECT.

alelejajaOptions: ABE
May 23, 2024

ABE correct answers