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.
  • 相关阅读:
    Android Widget桌面组件创建
    Android 音乐播放器。
    android 创建实时文件夹
    Android 中访问网页 webView
    Android 添加快捷方式
    Android闹钟设置
    Android中webView与javascript交互
    Android 通信的桥梁 Intent
    Android 中Notification和NotificationManager的使用
    Android中播放视频
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316623.html
Copyright © 2011-2022 走看看