1Z0-083 · Question #252
You upgraded your database from pre-12c to a multitenant container database (CDB) containing pluggable databases (PDBs). Examine the query and its output: Which two tasks must you perform to add…
The correct answer is B. Grant SYSBACKUP, SYSDG, and SYSKM privileges to the intended users. D. Re-create the password file with SYSBACKUP, SYSDG, and SYSKM privilege, and FORCE. Granting the privileges (B) automatically adds those users to the password file - in Oracle 12c+, issuing GRANT SYSBACKUP/SYSDG/SYSKM TO <user> is what actually populates the password file entry. However, since you upgraded from a pre-12c database, the existing password file is…
Question
You upgraded your database from pre-12c to a multitenant container database (CDB) containing pluggable databases (PDBs). Examine the query and its output:
Which two tasks must you perform to add users with SYSBACKUP, SYSDG, and SYSKM privilege to the password file?
Options
- AAssign the appropriate operating system groups to SYSBACKUP, SYSDG, SYSKM.
- BGrant SYSBACKUP, SYSDG, and SYSKM privileges to the intended users.
- CRe-create the password file with SYSBACKUP, SYSDG, and SYSKM privilege and the
- DRe-create the password file with SYSBACKUP, SYSDG, and SYSKM privilege, and FORCE
- ERe-createthepasswordfileintheOracleDatabase12cformat. Correct
How the community answered
(29 responses)- A7% (2)
- B76% (22)
- C3% (1)
- E14% (4)
Explanation
Granting the privileges (B) automatically adds those users to the password file - in Oracle 12c+, issuing GRANT SYSBACKUP/SYSDG/SYSKM TO <user> is what actually populates the password file entry. However, since you upgraded from a pre-12c database, the existing password file is in the old format and does not support these new privilege types; you must first re-create it using orapwd with FORCE=Y (D) to overwrite the existing file and produce a 12c-compatible format that can hold these entries.
Why the distractors fail:
- A - OS group assignment enables OS-authenticated connections, not password file entries; it is irrelevant here.
- C - Re-creating without
FORCE=Ywill fail because a password file already exists; Oracle requires the FORCE flag to overwrite it. - E - Merely re-creating in "12c format" (without specifying FORCE or the new privilege types) is incomplete and does not address the overwrite requirement.
Memory tip: Think of it as a two-step lock replacement - first swap out the old lock (FORCE-recreate the password file so it can hold new key types), then cut new keys for each user (GRANT the privileges). Neither step works without the other.
Topics
Community Discussion
No community discussion yet for this question.