This script will report on all backups – full, incremental and archivelog backups -
col STATUS format a9 col hrs format 999.99 select SESSION_KEY, INPUT_TYPE, STATUS, to_char(START_TIME,'mm/dd/yy hh24:mi') start_time, to_char(END_TIME,'mm/dd/yy hh24:mi') end_time, elapsed_seconds/3600 hrs from V$RMAN_BACKUP_JOB_DETAILS order by session_key;
This script will report all on full and incremental backups, not archivelog backups -
col STATUS format a9 col hrs format 999.99 select SESSION_KEY, INPUT_TYPE, STATUS, to_char(START_TIME,'mm/dd/yy hh24:mi') start_time, to_char(END_TIME,'mm/dd/yy hh24:mi') end_time, elapsed_seconds/3600 hrs from V$RMAN_BACKUP_JOB_DETAILS where input_type='DB INCR' order by session_key;
반응형
'Oracle' 카테고리의 다른 글
[Oracle] How to enable/disable a scheduled job? (0) | 2019.03.02 |
---|---|
Oracle : Drop database script (0) | 2018.11.30 |
Oracle SQLT utility (0) | 2018.11.28 |
[Oracle] Global name setting when db links doesn't work without ".world" (0) | 2018.11.27 |
Oracle SQLT Utility (0) | 2018.06.09 |