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

    558.Which view provides information on the backup status of the datafiles in the database?

    A. V$BACKUP

    B. V$BACKUP_STATUS

    C. V$BACKUP_DATAFILE

    D. V$DATAFILE_BACKUP

    E. V$TABLESPCE_BACKUP

    Answer: A

    答案解析:

    参考:http://docs.oracle.com/cd/E11882_01/server.112/e40402/dynviews_1044.htm#REFRN30017


    V$BACKUP

    V$BACKUP displays the backup status of all online datafiles.

    Column Datatype Description
    FILE# NUMBER File identifier
    STATUS VARCHAR2(18) File status: NOT ACTIVEACTIVE (backup in progress), OFFLINE NORMAL, or description of an error.

    NOT ACTIVE indicates that the file is not currently in backup mode (that is, an ALTER TABLESPACE ... BEGIN BACKUP or ALTER DATABASE BEGIN BACKUP statement has not been issued), whereas ACTIVE indicates that the file is currently in backup mode.

    CHANGE# NUMBER System change number when backup started
    TIME DATE Time the backup started
    sys@TEST0924> alter tablespace users begin backup;
    sys@TEST0924> alter tablespace users end backup;
    sys@TEST0924> select * from V$BACKUP;

         FILE# STATUS                CHANGE# TIME
    ---------- ------------------ ---------- ------------------
             1 NOT ACTIVE                  0
             2 NOT ACTIVE                  0
             3 NOT ACTIVE                  0
             4 NOT ACTIVE            6124889 01-NOV-13
             5 NOT ACTIVE                  0
             6 NOT ACTIVE                  0
             8 NOT ACTIVE                  0
             9 NOT ACTIVE                  0
            10 NOT ACTIVE                  0

    9 rows selected.
  • 相关阅读:
    使用Redis的理由
    从输入网址到显示网页的全过程分析
    Node.js初识
    GET和POST的数据传递到底有何区别?
    第四五六周学习进度
    首尾相接整数数组中最大子数组的和
    网页版四则运算
    团队介绍及项目简介
    整数数组中最大子数组的和
    软件工程个人作业03
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316623.html
Copyright © 2011-2022 走看看