zoukankan      html  css  js  c++  java
  • Rman将数据文件恢复到不同的路径

    RMAN> startup nomount
     
    connected to target database (not started)
    Oracle instance started
     
    Total System Global Area     289406976 bytes
     
    Fixed Size                     1219016 bytes
    Variable Size                 79693368 bytes
    Database Buffers             205520896 bytes
    Redo Buffers                   2973696 bytes
     
    RMAN> restore controlfile from autobackup ;
     
    Starting restore at 20-JAN-13
    using channel ORA_DISK_1
     
    recovery area destination: /u01/oracle/flash_recovery_area
    database name (or database unique name) used for search: ORCL
    channel ORA_DISK_1: autobackup found in the recovery area
    channel ORA_DISK_1: autobackup found: /u01/oracle/flash_recovery_area/ORCL/autobackup/2013_01_20/o1_mf_s_805243193_8hr0ftx5_.bkp
    channel ORA_DISK_1: control file restore from autobackup complete
    output filename=/u01/oracle/oradata/orcl/control01.ctl
    output filename=/u01/oracle/oradata/orcl/control02.ctl
    output filename=/u01/oracle/oradata/orcl/control03.ctl
    Finished restore at 20-JAN-13
     
     
    RMAN> alter database mount ;
     
    database mounted
    released channel: ORA_DISK_1
     
     
     
     
    RMAN> run{
    2> set newname for datafile  1  to    '/home/oracle/system01.dbf' ;
    3> set newname for datafile  2  to    '/home/oracle/undotbs01.dbf';
    4> set newname for datafile  3  to    '/home/oracle/sysaux01.dbf';
    5> set newname for datafile  4  to    '/home/oracle/users01.dbf';
    6> set newname for datafile  5  to    '/home/oracle/example01.dbf';
    7> restore database ;
    8> switch datafile all ;
    9> recover database ;
    10> }
     
    executing command: SET NEWNAME
    using target database control file instead of recovery catalog
     
    executing command: SET NEWNAME
     
    executing command: SET NEWNAME
     
    executing command: SET NEWNAME
     
    executing command: SET NEWNAME
     
    Starting restore at 20-JAN-13
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=159 devtype=DISK
     
    channel ORA_DISK_1: starting datafile backupset restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to /home/oracle/system01.dbf
    restoring datafile 00002 to /home/oracle/undotbs01.dbf
    restoring datafile 00003 to /home/oracle/sysaux01.dbf
    restoring datafile 00004 to /home/oracle/users01.dbf
    restoring datafile 00005 to /home/oracle/example01.dbf
    channel ORA_DISK_1: reading from backup piece /u01/oracle/flash_recovery_area/ORCL/backupset/2013_01_20/o1_mf_nnndf_TAG20130120T223858_8hr0d2lr_.bkp
    channel ORA_DISK_1: restored backup piece 1
    piece handle=/u01/oracle/flash_recovery_area/ORCL/backupset/2013_01_20/o1_mf_nnndf_TAG20130120T223858_8hr0d2lr_.bkp tag=TAG20130120T223858
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:05
    Finished restore at 20-JAN-13
     
    datafile 1 switched to datafile copy
    input datafile copy recid=17 stamp=805245722 filename=/home/oracle/system01.dbf
    datafile 2 switched to datafile copy
    input datafile copy recid=18 stamp=805245722 filename=/home/oracle/undotbs01.dbf
    datafile 3 switched to datafile copy
    input datafile copy recid=19 stamp=805245722 filename=/home/oracle/sysaux01.dbf
    datafile 4 switched to datafile copy
    input datafile copy recid=20 stamp=805245722 filename=/home/oracle/users01.dbf
    datafile 5 switched to datafile copy
    input datafile copy recid=21 stamp=805245722 filename=/home/oracle/example01.dbf
     
    Starting recover at 20-JAN-13
    using channel ORA_DISK_1
     
    starting media recovery
     
    archive log thread 1 sequence 6 is already on disk as file /u01/oracle/oradata/orcl/redo02.log
    archive log filename=/u01/oracle/oradata/orcl/redo02.log thread=1 sequence=6
    media recovery complete, elapsed time: 00:00:04
    Finished recover at 20-JAN-13
     
     
    RMAN> alter database open resetlogs ;
     
    database opened

  • 相关阅读:
    Egret白鹭开发小游戏中容易犯的错
    egret之消除游戏开发
    Jmeter学习之— 参数化、关联、断言、数据库的操作
    JMeter学习-031-JMeter 3.0 POST Body Data 中文乱码问题
    Nginx负载均衡的五种策略
    Linux性能监控分析命令(五)—free命令介绍
    Linux性能监控分析命令(四)—top命令介绍
    ssh连接时提示THE AUTHENTICITY OF HOST XX CAN'T BE ESTABLISHED
    Linux性能监控分析命令(二)—sar命令介绍
    jProfiler远程连接Linux监控jvm1运行状态
  • 原文地址:https://www.cnblogs.com/hftian/p/9288265.html
Copyright © 2011-2022 走看看