检查oracle数据库每日归档日志生成量

select trunc(completion_time) as "Date",
       count(*) as "Count",
	   (sum(blocks * block_size))/1024/1024 as "MB"
from v$archived_log
group by trunc(completion_time)
order by trunc(completion_time);
posted @ 2022-05-24 21:22  orcl  阅读(84)  评论(0编辑  收藏  举报