1Z0-052 · Question #70
The database instance is currently using SPFILE. View the Exhibit and examine the error that you received while running the DB Structure Integrity check. Given below are the steps to recover from…
The correct answer is A. 1, 2, 4, 3, 5, 6. When a multiplexed control file is lost while using SPFILE, recovery requires shutting down, copying a good control file, updating the SPFILE parameter, and then restarting the instance before opening the database. The correct ordered sequence is 1, 2, 4, 3, 5, 6.
Question
Exhibit
Options
- A1, 2, 4, 3, 5, 6
- B2, 4, 3, 5, 6; 1 not required
- C4, 5, 6, 2, 3; 1 not required
- D5, 2, 3, 4; 1 and 6 not required
How the community answered
(37 responses)- A65% (24)
- B22% (8)
- C5% (2)
- D8% (3)
Why each option
When a multiplexed control file is lost while using SPFILE, recovery requires shutting down, copying a good control file, updating the SPFILE parameter, and then restarting the instance before opening the database. The correct ordered sequence is 1, 2, 4, 3, 5, 6.
The instance must first be shut down cleanly (step 1) before any file-level operations are performed. After copying the surviving control file to the new location (step 2), the instance is started to NOMOUNT (step 4) so that ALTER SYSTEM SET CONTROL_FILES ... SCOPE=SPFILE can be issued (step 3) - this command requires a running instance. The database is then recovered (step 5) and opened (step 6).
Skipping the shutdown step is incorrect because attempting to copy a control file while the instance still has it open can lead to corruption or inconsistency.
Starting to NOMOUNT before copying the file and before updating the parameter is out of order, and the CONTROL_FILES parameter update must come before mount/open, not after recovery.
Omitting steps 1 and 6 is incorrect - a clean shutdown is required before file operations, and the database must be explicitly opened as the final step after recovery.
Concept tested: Oracle control file loss recovery procedure with SPFILE
Source: https://docs.oracle.com/en/database/oracle/oracle-database/19/bradv/maintaining-control-files.html
Topics
Community Discussion
No community discussion yet for this question.
