zoukankan      html  css  js  c++  java
  • OCP-1Z0-053-V12.02-626题

    626.Which options must you configure while performing an automated Tablespace Point-in-Time

    Recovery (TSPITR) by using Recovery Manager (RMAN)?

    A. New channels for restore and recovery tasks

    B. New name for the data files of the tablespace

    C. Auxiliary name for the data files of the tablespace

    D. Auxiliary destinations for an auxiliary set of data files

    Answer: D

    答案解析:

    参考:http://blog.csdn.net/rlhua/article/details/12659769

    官方参考:http://docs.oracle.com/cd/E11882_01/backup.112/e10642/rcmtspit.htm#BRADV380

    执行完全自动执行的TSPITR

    1. 配置在目标实例上执行TSPITR 所需的通道。
    2. 使用AUXILIARY DESTINATION选项指定辅助目标。
    RMAN> CONNECT TARGET
    RMAN> RECOVER TABLESPACE users, example
    > UNTIL TIME '2007-06-29:08:00:00'
    > AUXILIARY DESTINATION
    > '/u01/app/oracle/oradata/aux';
    3. 备份恢复的表空间并使它们联机。
    执行完全自动执行的TSPITR 时,还必须:
    • 配置在目标实例上执行TSPITR 所需的任何通道
    • 指定RMAN 用于数据文件辅助集和其它辅助实例文件的目标
    在TSPITR 完成之后,备份恢复的表空间并使它们联机。执行TSPITR 之后,不能使用TSPITR 之前创建的参与执行TSPITR 的表空间的备份。

     

    Performing Fully Automated RMAN TSPITR

    In the default mode, RMAN bases as much of the configuration for TSPITR as possible on the target database. During TSPITR, the recovery set data files are written in their current locations on the target database . The same channel configurations for the target database are used on the auxiliary instance when restoring files from backup. Auxiliary set data files and other auxiliary instance files, however, are stored in the auxiliary destination.

    Use the AUXILIARY DESTINATION parameter to set a location for RMAN to use for the auxiliary set data files. The auxiliary destination must be a location on disk with enough space to hold auxiliary set data files. Even if you use other techniques to rename some or all of the auxiliary set data files, specifying an AUXILIARY DESTINATION parameter provides a default location for auxiliary set data files for which names are not specified. TSPITR does not fail if you inadvertently omit some names of the auxiliary set data files.

    Performing TSPITR on Two Tablespaces

    RECOVER TABLESPACE users, tools
      UNTIL LOGSEQ 1300 THREAD 1
      AUXILIARY DESTINATION '/disk1/auxdest';
  • 相关阅读:
    Decode函数说明以及纵横表的转化
    数据库系统实现学习笔记二(数据库关系建模)--by穆晨
    数据库系统实现学习笔记一(数据库需求与ER建模)--by穆晨
    数据库—锁以及死锁的处理
    关系型数据库和非关系型数据库的区别
    数据库的一些基本概念(键、事务)
    ns2.34 移植MFLOOD协议时出现的问题
    第6章 函数
    第4章 表达式
    字符数组 & 字符串
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316642.html
Copyright © 2011-2022 走看看