You are on page 1of 1

Time remaining

==========================================
select a.sid, a.serial#, a.program, b.opname, b.time_remaining
from gv$session a, gv$session_longops b
where a.sid=b.sid
and a.serial#=b.serial#
and a.program like '%RMAN%'
and time_remaining > 0;
===========================================

RMAN Device type and File stored location


===========================================
select device_type "Device", type, filename,
to_char(open_time, 'mm/dd/yyyy hh24:mi:ss') open,
to_char(close_time, 'mm/dd/yyyy hh24:mi:ss') close,
elapsed_time ET, effective_bytes_per_second EPS
from v$backup_async_io
where close_time > sysdate - 30
order by close_time desc;
=============================================

RMAN Backup summary


=============================================
select /*+ RULE */ session_key, session_recid,
start_time, end_time, output_bytes, elapsed_seconds
from v$rman_backup_job_details
where start_time >= sysdate-180
and status='COMPLETED';

You might also like