码迷,mamicode.com
首页 > 数据库 > 详细

oracle 查询 归档日志最大值和平均值

时间:2018-04-04 20:52:32      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:归档日志   rom   sum   free   最大值   nbsp   des   max   使用   

select max(ss.size_GB), avg(ss.size_GB)
  from (select s.*, rownum rn2
          from (select a.*
                  from (select t1.*, rownum rn
                          from (SELECT TRUNC(FIRST_TIME) time,
                                       SUM(BLOCK_SIZE * BLOCKS) / 1024 / 1024 / 1024 size_GB
                                  FROM V$ARCHIVED_LOG
                                 GROUP BY TRUNC(FIRST_TIME)
                                 order by time desc) t1) a
                 where a.rn > 1
                 order by a.time asc) s) ss
 where ss.rn2 > 1;

 

----查询ASM使用率

select group_number,name,total_mb/1024 TGB,free_mb/1024 FGB,USABLE_FILE_MB/1024  from v$asm_diskgroup;

oracle 查询 归档日志最大值和平均值

标签:归档日志   rom   sum   free   最大值   nbsp   des   max   使用   

原文地址:https://www.cnblogs.com/ss-33/p/8718430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!