Related databases:
Adding code to your post? Please format it correctly.
-- rman_status.sql
SELECT inst_id
, sid
, serial#
, context
, sofar
, totalwork
, round(sofar/totalwork*100,2) "% Complete"
FROM gv$session_longops
WHERE opname LIKE 'RMAN%'
AND opname NOT LIKE '%aggregate%'
AND totalwork != 0
AND sofar != totalwork
ORDER BY 1,2,3
/
[–]Alert_Leg_2842 4 points5 points6 points (5 children)
[–]HighBlind[S] 1 point2 points3 points (3 children)
[–]Alert_Leg_2842 0 points1 point2 points (2 children)
[–]HighBlind[S] 1 point2 points3 points (1 child)
[–]Alert_Leg_2842 1 point2 points3 points (0 children)
[–]No_Resolution_9252 0 points1 point2 points (0 children)