Created
January 19, 2011 18:51
-
-
Save neilkod/786628 to your computer and use it in GitHub Desktop.
completion time and scn for last successful full backup
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
select max(end_time) completion_time | |
, timestamp_to_scn(max(end_time)) scn | |
from v$rman_backup_job_details | |
where input_type = 'DB FULL' | |
and status='COMPLETED'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment