Query To Get Archive Log Apply Rate Speed of a Standby Database
set linesize 180
col Values for a70
col Recovery_start for a21
select to_char(START_TIME,’dd.mm.yyyy hh24:mi:ss’) “Recovery_start”,
to_char(item)||’ = ‘||to_char(sofar)||’ ‘||to_char(units)||’ ‘|| to_char(TIMESTAMP,’dd.mm.yyyy hh24:mi’) “Values”
from v$recovery_progress
where start_time=(select max(start_time) from v$recovery_progress);
Recent Posts