zoukankan      html  css  js  c++  java
  • 053第401题


    401.Which of the following are correct about block media recovery? (Choose all that apply.)

    A. Physical and logical block corruption is recorded automatically in V$DATABASE_BLOCK_
    CORRUPTION.
    B. Logical corruptions are repairable by BMR.
    C. Physical corruptions are repairable by BMR.
    D. RMAN can use any backup for a BMR restore.
    E. ARCHIVELOG mode is not required if you have both a full and incremental backup for restore.
    Answer: AC



    In most cases, the database marks a block as media corrupt and then writes it to disk when the
    corruption is first encountered. No subsequent read of the block will be successful until the block is
    recovered. You can only perform block recovery on blocks that are marked corrupt or fail a
    corruption check. Block media recovery is performed using the RMAN RECOVER...BLOCK
    command. By default, RMAN searches the flashback logs for good copies of the blocks, and then
    searches for the blocks in full or level 0 incremental backups. When RMAN finds good copies, it
    restores them and performs media recovery on the blocks. Block media recovery can only use redo
    logs for media recovery, not incremental backups.
    The V$DATABASE_BLOCK_CORRUPTIONview displays blocks marked corrupt by database
    components such as RMAN commands, ANALYZE, dbv, SQL queries, and so on. The following
    types of corruption result in rows added to this view:
    • Physical/Media corruption: The database does not recognize the block: the checksum is
    invalid, the block contains all zeros, or the block header is fractured. Physical corruption
    checking is enabled by default.
    • Logical corruption: The block has a valid checksum, the header and footer match, but the
    contents are inconsistent. Block media recovery cannot repair logical block corruption. Logical
    corruption checking is disabled by default. You can turn it on by specifying the CHECK
    LOGICAL option of the BACKUP, RESTORE, RECOVER, and VALIDATE commands



  • 相关阅读:
    mysql分表和表分区详解
    CNN 文本分类
    基于深度学习的目标检测研究进展
    标注工具
    在Ubuntu登陆界面输入密码之后,黑屏一闪后,又跳转到登录界面
    R-CNN,SPP-NET, Fast-R-CNN,Faster-R-CNN, YOLO, SSD系列深度学习检测方法梳理
    LeNet,AlexNet,GoogleLeNet,VggNet等网络对比
    nginx使用与配置入门指南
    CentOS 7上重新编译安装nginx
    酸汤肉沫豆腐
  • 原文地址:https://www.cnblogs.com/liguangsunls/p/6792227.html
Copyright © 2011-2022 走看看