Oracle 视图 V$BACKUP_SET_SUMMARY 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$BACKUP_SET_SUMMARY提供有关每个备份集的汇总信息。每个备份集有一行记录。
用途:
该视图可用于查找单个备份操作的汇总信息,如备份的数据库文件、备份的数据量大小和时间戳,以及备份集的状态。
使用方法:
通过在视图V$BACKUP_SET_SUMMARY中查询,可以轻松检索有关当前和历史备份集的信息:
SELECT * FROM V$BACKUP_SET_SUMMARY;
官方英文解释
V$BACKUP_SET_SUMMARY
provides summary information for a backup set.
Column | Datatype | Description |
---|---|---|
|
| Total number of backup sets created |
|
| Oldest backup start time |
|
| Newest backup start time |
|
| Number of output bytes (not including multiple copies) |
|
| Number of input bytes when backup sets were created |
|
| Average input rate |
|
| Average output rate |
|
| The ratio between the total blocks in the datafile and the blocks that RMAN backed up. This is not the the ratio from the |
|
| Displayable format for input bytes |
|
| Displayable format for output bytes |
|
| Displayable format for input rate |
|
| Displayable format for output rate |
|
| The ID of the container to which the data pertains. Possible values include:
|
编辑:568数据
标签:备份,视图,信息,英文,量大