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 ACTIVE, ACTIVE (backup in progress), OFFLINE NORMAL, or description of an error.
|
CHANGE# | NUMBER | System change number when backup started |
TIME | DATE | Time the backup started |
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.
本文介绍了如何使用V$BACKUP视图查询数据库中数据文件的备份状态,包括文件标识符、状态、更改号和开始时间等关键信息。
5300

被折叠的 条评论
为什么被折叠?



