zoukankan      html  css  js  c++  java
  • OCP-1Z0-053-200题-155题-218

    QUESTION 155

    Your database is running in ARCHIVELOG mode. You are performing a user-managed backup of the DATA1

    tablespace. You place the DATA1 tablespace in backup mode by issuing the following statement:

    ALTER TABLESPACE data1 BEGIN BACKUP;

    While you are performing the backup, an error occurs that causes the instance to terminate abnormally.Which

    statement about the DATA1 tablespace is true?

    A. The DATA1 tablespace is automatically taken out of backup mode when the instance aborts.

    B. If you restart the database, the DATA1 tablespace will be automatically taken out of backup mode when the

    database is opened.

    C. If you restart the database, the DATA1 tablespace will be automatically taken out of backup mode when the

    database is mounted.

    D. If you restart the database, the database will not be opened.

    Answer: D

    同218题:http://blog.csdn.net/rlhua/article/details/13808143


    Explanation/Reference:

    Section: Backup, Recovery & Recovery Manager (RMAN)

    If you restart the database, the database will not be opened. The database will reach the MOUNT state,but will

    not be opened. An error will be generated indicatingthat media recovery is required. To successfully open the

    database, you should take the tablespace out of backup mode. You can do so by issuing the ALTER

    TABLESPACE data1 END BACKUP;statement, or you can issue an ALTER DATABASE END BACKUP;

    statement, which will take all datafiles in all tablespaces out of back up mode.

    All of the other options are incorrect. The DATA1 tablespace is automatically taken out of backup mode when

    the instance aborts, when the instance is opened, or when the instance is mounted.

  • 相关阅读:
    数据结结构学习 赫夫曼树
    C++ 类中特殊的成员变量(常变量、引用、静态)的初始化方法
    Linux/Unix time时间戳的处理转换函数
    gcc中include文件的搜索路径
    数据结结构学习 2叉树
    C++ 虚函数表解析
    数据结结构学习 线性表
    C#实现MD5加密
    学习的艺术
    C# 3.0实现类本身的方法扩展
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316098.html
Copyright © 2011-2022 走看看