Quantcast
Channel: v$archived_log – Oracle DBA – Tips and Techniques
Viewing all articles
Browse latest Browse all 2

Script- Track redo generation by day

$
0
0

select trunc(completion_time) rundate
,count(*)  logswitch
,round((sum(blocks*block_size)/1024/1024)) "REDO PER DAY (MB)"
from v$archived_log
group by trunc(completion_time)
order by 1;

Viewing all articles
Browse latest Browse all 2