Oracle 视图 V$RMAN_BACKUP_JOB_DETAILS 官方解释,作用,如何使用详细说明
本站中文解释
视图
Oracle视图V$RMAN_BACKUP_JOB_DETAILS用于描述RMAN会话中每个备份作业的详细信息。它存储了关于来自RMAN备份的每个作业的诊断信息的记录。我们可以通过V$RMAN_BACKUP_JOB_DETAILS视图来监视进行中的备份作业,并且可以查看已完成的备份作业执行的状态、消耗的时间等等,以便了解RMAN备份是否有效。我们可以使用这个视图来确定给定备份作业的指定阶段是否已成功完成。
语法:
SELECT *
FROM v$rman_backup_job_details
WHERE ;
其中可以是任何SQL条件,例如“job_name=My_Backup_Job”。
官方英文解释
V$RMAN_BACKUP_JOB_DETAILS
displays details about backup jobs.
Column | Datatype | Description |
---|---|---|
|
| Session identifier |
|
| Together, with |
|
| Together, with |
|
| Either a user-specified SET COMMAND ID or a unique command ID generated by RMAN |
|
| Start time of the first BACKUP command in the job |
|
| End time of the last BACKUP command in the job |
|
| Sum of all input file sizes backed up by this job |
|
| Output size of all pieces generated by this job |
|
| Used internally by Enterprise Manager |
|
| Used internally by Enterprise Manager |
|
| Used internally by Enterprise Manager |
|
| Can be DISK, SBT, or *. An * indicates more than one device (in most cases, it will be DISK or SBT). |
|
| Number of autobackups performed by this job |
|
| A value of |
|
| YES or NO, depending upon whether or not a control file autobackup was done as part of this backup job |
|
| One of the following values:
|
|
| Contains one of the following values. If the user command does not satisfy one of them, then preference is given in order, from top to bottom of the list.
|
|
| YES or NO, depending on whether optimization was applied. Applicable to backup jobs only. |
|
| Number of elapsed seconds |
|
| Compression ratio |
|
| Input read-rate-per-second |
|
| Output write-rate-per-second |
|
| Values in user-displayable form. They will be converted to a format of nM, nG, nT, nP, and so on. |
|
| Values in user-displayable form. They will be converted to a format of nM, nG, nT, nP, and so on |
|
| Input read-rate-per-second. These values are in user-displayable form. They will be converted to a format of nM, nG, nT, nP, and so on. |
|
| Output write-rate-per-second. These values are in user-displayable form. They will be converted to a format of nM, nG, nT, nP, and so on. |
|
| Time taken, shown in user-displayable format <nn>h:<nn>m:<nn>s |
|
| The ID of the container to which the data pertains. Possible values include:
|
编辑:568数据
标签:作业,备份,视图,详细信息,我们可以