Oracle 视图 V$BACKUP_SET_DETAILS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$BACKUP_SET_DETAILS存储备份系统的细节,这样您可以查看每个备份存档的相关信息,例如对象、存档文件,备份集的起始、结束时间以及状态。
使用该视图的Organization查询备份的细节信息:
SELECT CLIENT_NAME, object_type, status
FROM V$BACKUP_SET_DETAILS
ORDER BY client_name;
该查询将检索系统中每个备份存档的客户端名称、对象类型、状态等信息。
官方英文解释
V$BACKUP_SET_DETAILS
provides detailed information about the backup set.
This view will contain an extra row for each backup session that invokes BACKUP BACKUPSET (that is, creates new copies for the same backup set or copies backup set information from disk to tape). However, the remaining values of other columns belong to the complete backup set.
Column | Datatype | Description |
---|---|---|
|
|
Session identifier |
|
|
Identifies the job, together with |
|
|
Identifies the job, together with |
|
|
Backup set identifier |
|
|
RECID from |
|
|
Stamp from |
|
|
Backup set stamp |
|
|
Backup count number |
|
|
Type of backup (same as in |
|
|
Control file included in backup set (same as in |
|
|
Incremental level (same as in |
|
|
Number of pieces (same as in |
|
|
Start time of the backup set (same as in |
|
|
Completion time of the backup set (same as in |
|
|
Time taken for backup set creation (same as in |
|
|
Block size (same as in |
|
|
Keep value (same as in |
|
|
Keep Until time (same as in |
|
|
Keep options (same as in |
|
|
Type of device. If the backup set exists on more than one device type, an * is indicated here. |
|
|
|
|
|
Number of identical copies |
|
|
Size of the backup set |
|
|
Amount of data backed up when the backup set was created |
|
|
The ratio between the total blocks in the datafile and the blocks that RMAN backed up. This is not the the ratio from the |
|
|
The status of the backup set. It is always |
|
|
Number of bytes read per second when backup set was initially created |
|
|
Number of bytes written per second when the backup set was initially created |
|
|
Input rate to display |
|
|
Size of backup set to display |
|
|
Input rate per second for display |
|
|
Output rate per second for display |
|
|
Elapsed time in hh:mm:ss format |
|
|
A value of |
|
|
A value of |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
“V$BACKUP_SET”