zoukankan      html  css  js  c++  java
  • How to create physical standby database with 11g RMAN DUPLICATE FROM ACTIVE DATABASE [ID 747250.1]

    How to create physical standby database with 11g RMAN DUPLICATE FROM ACTIVE DATABASE [ID 747250.1]


     

    Modified 15-FEB-2011     Type HOWTO     Status PUBLISHED

     

    In this Document
      Goal
      Solution


    Applies to:

    Oracle Server - Enterprise Edition - Version: 11.1.0.6 to 11.1.0.7 - Release: 11.1 to 11.1
    Information in this document applies to any platform.
    ***Checked for relevance on 15-Feb-2011***

    Goal

    This note outlines the required steps to create a physical standby database using 11g RMAN DUPLICATE FROM ACTIVE DATABASE. The script is taken from Data Guard labs based on the 11g OBEs available from OTN.

    Solution

    Install Oracle on standby system.

    Update tnsname.ora on primary & standby systems. In this example, Chicago is Primary and Boston is Standby.

    tnsnames.ora (on both systems)

    BOSTON =
     (DESCRIPTION =
      (ADDRESS_LIST =
        (ADDRESS = (PROTOCOL = TCP)(HOST = lcarpent.us.oracle.com)(PORT = 1521))
      )
      (CONNECT_DATA = (SERVICE_NAME = Boston.us.oracle.com))
     )

    CHICAGO =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = stadu67.us.oracle.com)(PORT = 1521))
        )
       (CONNECT_DATA = (SERVICE_NAME = Chicago.us.oracle.com))
      )


    Also, insert a static entry for Boston in the listener.ora file of the standby system.

    SID_LIST_LISTENER =
     (SID_LIST =
       (SID_DESC =
         (GLOBAL_DBNAME = Boston.us.oracle.com)
         (ORACLE_HOME = /scratch/OracleHomes/OraHome111)
         (SID_NAME = Boston)
       )
      )

    LISTENER =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = lcarpent.us.oracle.com)(PORT = 1521))
      )


    Then execute the following script on standby, assuming ASM is setup with +DATA and +FLASH disk groups:

    source ./makeBoston

    # Create temporary password file, must have same password as primary
    orapwd file=/scratch/OracleHomes/OraHome111/dbs/orapwBoston password=oracle

    # Create temporary parameter file
    cat > /scratch/OracleHomes/OraHome111/dbs/tempini.ora <
    db_name=temp
    EOF

    # Start up the auxiliary instance nomount
    sqlplus '/ as sysdba' <
    SET ECHO ON
    STARTUP PFILE='/scratch/OracleHomes/OraHome111/dbs/tempini.ora' NOMOUNT;
    EOF

    rman <
    set echo on
    connect target sys/oracle@chicago;   # Primary
    connect auxiliary sys/oracle@boston; # Standby: tnsname used by primary

    run {
    allocate channel prmy1 type disk;
    allocate channel prmy2 type disk;
    allocate channel prmy3 type disk;
    allocate channel prmy4 type disk;
    allocate channel prmy5 type disk;
    allocate auxiliary channel stby1 type disk;

    duplicate target database for standby from active database
    spfile
    parameter_value_convert 'Chicago','Boston'
    set 'db_unique_name'='Boston'
    set standby_file_management='AUTO'
    set db_create_file_dest='+DATA'
    set db_recovery_file_dest='+FLASH'
    set DB_RECOVERY_FILE_DEST_SIZE='8G'
    set dg_broker_start='TRUE'
    set control_files='+DATA/boston/controlfile/control01.ctl'
    nofilenamecheck
    ;
    }

    EOF
    exit 0

     


     

     

     

    ------------------------------------------------------------------------------

    Blog http://blog.csdn.net/tianlesoftware

    网上资源: http://tianlesoftware.download.csdn.net

    相关视频:http://blog.csdn.net/tianlesoftware/archive/2009/11/27/4886500.aspx

    DBA1 群:62697716(); DBA2 群:62697977()

    DBA3 群:62697850   DBA 超级群:63306533;    

    聊天 群:40132017

    --加群需要在备注说明Oracle表空间和数据文件的关系,否则拒绝申请

    道森Oracle,国内最早、最大的网络语音培训机构,我们提供专业、优质的Oracle技术培训和服务! 我们的官方网站:http://www.daosenoracle.com 官方淘宝店:http://daosenpx.taobao.com/
  • 相关阅读:
    ubuntu下使用ppa安装codeblocks集成开发环境
    CentOS g++ 安装
    CentOS 7.1云服务器 配置FTP服务器vsftpd
    div高度自适应浏览器高度
    HTML中的head结构
    javascript高级进阶系列
    javascript集中跨域方法
    canvas标签的width和height以及style.width和style.height的区别
    html5学习笔记之入新特性
    ie下a标签里的图片会有边框
  • 原文地址:https://www.cnblogs.com/tianlesoftware/p/3609795.html
Copyright © 2011-2022 走看看