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

    You issued the following commands to configure setting in RMAN;
    RMAN> CONFIGURE DEVICE TYPE sbt PARALLELISM 1;
    RMAN> CONFIGURE DEFAULT DEVICE TYPE TO sbt;
    RMAN> CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE sbt TO 2;
    RMAN> CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE sbt TO 2;
    RMAN> CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 2;
    Then you issued the following command to take the backup:
    RMAN> BACKUP DATABASE PLUS ARCHIVELOG;
    Which statement is true about the execution of the above command?
    A. The backup will terminate because the FORMAT clause was not configured for the channel
    B. It backs up two copies of data files to tape and disk, and two copies of archived log file on tape
    C. It backs up the data files and archived log files to disk, making two copies of each data file and archived log file
    D. It backs up the data files and archived log files to tape, making two copies of each data file and archived log file

    CONFIGURE DEFAULT DEVICE TYPE TO sbt; 设置默认备份设备是磁带
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE sbt TO 2;两个数据文件副本备到磁带
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE sbt TO 2;两个归档日志文件备份到磁带。
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 2; 备份到磁盘的时候生成 2 个数据文件副本。
    根据如上的配置来执行 BACKUP DATABASE PLUS ARCHIVELOG,备份数据库文件和归档日志文件,使用默认的设备,备份数据文件和归档 2 份到磁带。

  • 相关阅读:
    毕业3年在北京买房,他是怎么赚钱攒钱的?
    Windows Server 2008 如何在IIS中添加MIME类型
    IIS下无法访问.ini后缀文件
    新的一年,我们如何才能收获满满,不留太多遗憾呢?
    你百分之九十九的问题都是因为懒
    为什么你容许陌生人成功,却无法忍受身边人发达
    堆排序
    计数排序
    直接插入排序
    冒泡排序
  • 原文地址:https://www.cnblogs.com/Babylon/p/7839938.html
Copyright © 2011-2022 走看看