2026-03-12 20:23:15
This commit is contained in:
19
vg/rman_backup_output.sql
Normal file
19
vg/rman_backup_output.sql
Normal 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
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user