1Z0-116 · Question #7
Examine this output: Which three are true?
The correct answer is A. John must connect as system to perform backup and recovery operations. B. John can query dba tables. G. John can query other user's data.. Based on the (unseen) output, John has been granted the DBA role - a powerful but non-SYSDBA level of access in Oracle Database. This role grants him full read access to the data dictionary (DBA_ views), making B correct, and the SELECT ANY TABLE system privilege, making G correc
Question
Examine this output:
Which three are true?
Options
- AJohn must connect as system to perform backup and recovery operations.
- BJohn can query dba tables.
- CJohn can perform backup and recovery operations by using SQL.
- DJohn can perform backup and recovery operations by using RMAN.
- EJohn must connect as sys to perform backup and recovery operations.
- FJohn Is not able to perform startup and shutdown operations.
- GJohn can query other user's data.
How the community answered
(26 responses)- A88% (23)
- D4% (1)
- E8% (2)
Explanation
Based on the (unseen) output, John has been granted the DBA role - a powerful but non-SYSDBA level of access in Oracle Database. This role grants him full read access to the data dictionary (DBA_* views), making B correct, and the SELECT ANY TABLE system privilege, making G correct. For backup and recovery, John lacks the SYSDBA or SYSOPER system privilege, so he must authenticate through the built-in SYSTEM account to perform those operations - confirming A is correct.
Why the distractors are wrong:
- C is wrong because Oracle backup is not performed via SQL statements - that's not how the architecture works.
- D is wrong because RMAN requires
SYSDBAorSYSOPERprivilege, which John's DBA role does not include. - E is wrong because
SYSandSYSTEMare distinct accounts -SYSowns the data dictionary and requiresSYSDBA;SYSTEMis the correct DBA-level account for this scenario. - F is wrong because a user with DBA-level credentials (via SYSTEM) retains startup/shutdown capability.
Memory tip: Think of it as a "DBA sandwich" - John gets the bread (query DBA tables, query user data) but not the filling (SYSDBA/SYSOPER). For backup, he borrows the kitchen (SYSTEM account), not the master chef's tools (SYS/SYSDBA).
Topics
Community Discussion
No community discussion yet for this question.