zoukankan      html  css  js  c++  java
  • HOW TO PERFORM BLOCK MEDIA RECOVERY (BMR) WHEN BACKUPS ARE NOT TAKEN BY RMAN. (Doc ID 342972.1)


    In this Document

      Goal
      Solution

    Applies to:

    Oracle Database - Enterprise Edition - Version 9.2.0.1 and later
    Oracle Database Cloud Schema Service - Version N/A and later
    Oracle Database Exadata Cloud Machine - Version N/A and later
    Oracle Cloud Infrastructure - Database Service - Version N/A and later
    Oracle Database Cloud Exadata Service - Version N/A and later
    Information in this document applies to any platform.
    **** Checked for Relevance on 16-NOV-2015 ****

    Goal

    To Perform Block Media Recovery (BMR) when there are OS-backups available, but NO RMAN backups.

    Consider that a block corruption is reported in the database and the corruption is not wide spread.

    Since RMAN is not used in the database the initial solution would be to restore the file from backup and then recover. But this method will require the file should be offline during the entire process. On the other hand if BMR can be used, the file does not need to be taken offline.

    This document describes to how to use the OS backup via RMAN and then to perform the BMR.

    Solution

    -----------

    The backups can be cataloged with RMAN and then BMR can be performed.

    Step 1 : Identify the backup of the datafilefile which has the corrupted block(s) and catalog it within RMAN.

              Example: Backup is  /u01/backup/users01.dbf
      

    $ export ORACLE_SID=orcl
    $ RMAN target=/
    RMAN> catalog datafilecopy ‘/u01/backup/users01.dbf’;

    Note: It is a good idea to run DBV against the backup of the datafile to ensure the block is free from corruption within the backup copy. If it is corrupted then the BMR will fail.

    Step 2 : Check the archived redologs.          

            RMAN is using the archived redologs which are known in V$ARCHIVED_LOG. If the archivelog files are not
            reported in V$ARCHIVED_LOG because they are moved to another location, or aged out of the controlfile,
            then they need to be cataloged as well.
          

    First verify the existing archived redologs :
    RMAN> crosscheck archivelog all;
    RMAN> delete expired archivelog all;

    Then catalog the unknown archived redologs :
    RMAN> catalog archivelog ‘/u01/backup/archivelog/Arch_ocl_1_30.dbf’

     
    Step  3 : Perform the BMR

            Having datafile(s) and all required archivelogs cataloged, we can run BMR as follows.

    Example for a block recovery of blocks 99, 100, 101 in datafile 5

    RMAN> blockrecover datafile 5 block 99,100,101;

    To BottomTo Bottom
  • 相关阅读:
    Java Varargs 可变参数使用
    GitLab 如何删除 Forked from
    Git Clone 的时候遇到 Filename too long 错误
    Spring Boot 如何部署到 Linux 中的服务
    Gradle 如何打包 Spring Boot 如何不添加版本代码
    HDU 5878---预处理+二分查找
    HDU 5881--Tea 思维规律
    HDU 5879---cure
    (转)C/S 与 B/S 区别
    卡特兰数
  • 原文地址:https://www.cnblogs.com/yaoyangding/p/12976684.html
Copyright © 2011-2022 走看看