2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

19
vg/rman_backup_output.sql Normal file
View File

@@ -0,0 +1,19 @@
SELECT s.START_TIME
,s.status
,s.row_type
,s.operation
,s.object_type
,s.output_device_Type
,o.output
FROM v$rman_status s
, v$rman_output o
WHERE o.db_key = s.db_key
AND o.rsr_key = s.RSR_KEY
AND o.session_key = s.SESSION_KEY
AND s.start_time > sysdate - 1
AND s.status NOT IN ( 'COMPLETED' )
ORDER by s.START_TIME
, o.stamp
, o.recid
;