053-601

You need to perform a block media recovery on the tools01.dbf data file in the SALES database by using Recovery Manager (RMAN).
Which two are the prerequisites to perform this operation? (Choose two)
A. You must configure block change tracking file
B. You must have first level 1 backups for RMAN to restore blocks
C. You must ensure that the SALES database is mounted or open
D. You must have full or level 0 backups for RMAN to restore blocks
E. You must take the tools01.dbf data file offline before you start a block media recovery

  当数据文件上有坏块时,要进行恢复操作
  执行块恢复不需要离线数据文件,只对那些需恢复的块进行重建和恢复,在恢复过程中,实际上只有这些块不可用。
  使用 RMAN 命令 RECOVER ... BLOCK 进行恢复,默认的首先会从物理备库,然后闪回日志,最后是全备或者等级 0 的增量备份中寻找完好的块。
  在丢失部分 redo 的情况下,也可以进行 RMAN 块介质恢复。先决条件如下:
1.目标数据库必须在 archivelog 模式下,必须使用当前控制文件启动在 mout 或者 open 模式
2.包含坏块的数据文件,必须有存在全部或者增量为 0 的备份,并且不是代理拷贝
3.RMAN 可以在恢复中只使用归档日志,但是不能使用 level1 的增量备份。

原文地址:https://www.cnblogs.com/Babylon/p/7839251.html