Last active
October 6, 2016 16:43
-
-
Save dotmaik1/38d69743b2de1b03c6137524894d08e8 to your computer and use it in GitHub Desktop.
List all the backups information
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set lines 200 | |
| 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, | |
| round((end_time-start_time)*1440,2) "Minutes" | |
| from V$RMAN_BACKUP_JOB_DETAILS | |
| order by session_key desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment