Oracle Database Administration II — Question 39
Which two are true about instance recovery? (Choose two.)
Answer options
- A. It is not possible if an archived log is missing.
- B. It is performed automatically after the database is opened; however, blocks requiring recovery are not available until they are recovered.
- C. Setting FAST_START_MTTR_TARGET to a lower value reduces instance recovery time by causing dirty buffers to be written to disk more frequently, thereby reducing the number of I/Os needed during instance recovery.
- D. It is performed by the Recovery Writer (RVWR) background process.
- E. Setting FAST_START_MTTR_TARGET to a higher value reduces instance recovery time by causing the log writer to write more frequently, thereby reducing the number of I/Os needed during instance recovery.
- F. It is performed automatically while the database remains in MOUNT state. Then the database is opened.
Correct answer: C, F
Explanation
Answer C is correct because reducing FAST_START_MTTR_TARGET leads to more frequent writing of dirty buffers, thus optimizing recovery time. Answer F is also correct as instance recovery occurs automatically while the database is in MOUNT state before it is opened. The other options either misstate the functions of the parameters or the recovery process.