zoukankan      html  css  js  c++  java
  • 053-005


    5.Examine the section of the Health Check report given below:
    DBMS_HM.GET_RUN_REPORT('HM_RUN_1061')
    Run Name : HM_RUN_1061 Run Id : 1061 Check Name : Data Block Integrity Check Mode :
    REACTIVE Status : COMPLETED Start Time : 2007-05-12 22:11:02.032292 -07:00 End Time :

    Source Incident Id : 7418
    Number of Incidents Created :0
    Which two statements are true regarding the Health Check report? (Choose two.)
    A. Health Check was performed manually.
    B. Health Check was performed to check the disk image block corruptions.
    C. Health Check was performed to check interblock and intersegment corruption.
    D. Health Check was performed to verify the integrity of database files and report failures.
    E. Health Check was performed by the Health Monitor automatically in response to a critical error.
    Answer: AB

    解析:

    BEGIN
    DBMS_HM.RUN_CHECK('Data Block Integrity Check', 'HM_RUN_1061',null,'BLC_DF_NUM=1;BLC_BL_NUM=23456');
    END;
    /

    select dbms_hm.get_run_report('HM_RUN_1061','TEXT','BASIC') from dual;

    Data Block Integrity Check—This check detects disk image block corruptions such as checksum failures, head/tail mismatch, and logical inconsistencies within the block. Most corruptions can be repaired using Block Media Recovery. Corrupted block information is also captured in the V$DATABASE_BLOCK_CORRUPTION view. This check does not detect inter-block or inter-segment corruption.
    参数说明
    SELECT a.* FROM v$hm_check_param a, v$hm_check b
    WHERE a.check_id = b.id
    AND b.name = 'Data Block Integrity Check'; --BLC_DF_NUM 文件号 BLC_BL_NUM块号

    参考:

    http://docs.oracle.com/cd/B28359_01/server.111/b28310/diag007.htm#ADMIN11269

  • 相关阅读:
    Docker和k8s的区别与介绍
    NFS网络文件系统详解
    NFS文件系统及搭建NFS共享服务
    Tomcat 端口配置,及原理详解
    svn使用教程
    buff/cache内存占用过多
    关于xcode:如何在Objective-C中使用符号断点获取参数
    iOS开发消除编译警告
    建模的能力才是一个人和核心能力
    android sutdio 环境搭建
  • 原文地址:https://www.cnblogs.com/bowshy/p/3672219.html
Copyright © 2011-2022 走看看