博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
查询归档量
阅读量:4976 次
发布时间:2019-06-12

本文共 1687 字,大约阅读时间需要 5 分钟。

select logtime,         count(*),         round(sum(blocks * block_size) / 1024 / 1024) mbsize    from (select trunc(first_time, 'hh') as logtime, a.BLOCKS, a.BLOCK_SIZE            from v$archived_log a           where a.DEST_ID = 1             and a.FIRST_TIME > trunc(sysdate))   group by logtime   order by logtime desc;     查最近一周每天的归档日志生成量 Sql代码  收藏代码select logtime,         count(*),         round(sum(blocks * block_size) / 1024 / 1024) mbsize    from (select trunc(first_time, 'dd') as logtime, a.BLOCKS, a.BLOCK_SIZE            from v$archived_log a           where a.DEST_ID = 1             and a.FIRST_TIME > trunc(sysdate - 7))   group by logtime   order by logtime desc;    如果你需要知道RAC下各个节点的归档日志情况,我将上面脚本略作修改,增加thread#列。 查当天每小时的各个实例的归档日志生成量 Sql代码  收藏代码select THREAD#,         logtime,         count(*),         round(sum(blocks * block_size) / 1024 / 1024) mbsize    from (select a.THREAD#,                 trunc(first_time, 'hh') as logtime,                 a.BLOCKS,                 a.BLOCK_SIZE            from v$archived_log a           where a.DEST_ID = 1             and a.FIRST_TIME > trunc(sysdate))   group by THREAD#, logtime   order by THREAD#, logtime desc;   查最近一周每天的各个实例的归档日志生成量 Sql代码  收藏代码select THREAD#,         logtime,         count(*),         round(sum(blocks * block_size) / 1024 / 1024) mbsize    from (select THREAD#,                 trunc(first_time, 'dd') as logtime,                 a.BLOCKS,                 a.BLOCK_SIZE            from v$archived_log a           where a.DEST_ID = 1             and a.FIRST_TIME > trunc(sysdate - 7))   group by THREAD#, logtime   order by THREAD#, logtime desc;

 

转载于:https://www.cnblogs.com/dayu-liu/p/10232772.html

你可能感兴趣的文章
学习了django对于sqlite3进行了了解,谈谈看法
查看>>
PHP编程文件处理类SplFileObject和SplFileInfo用法实例分析
查看>>
在rails中 Rendering Partials through Ajax
查看>>
货币系统
查看>>
算法和数据结构---排序---优先级队列
查看>>
VS 统计代码行数
查看>>
html----怎样实现元素的垂直居中
查看>>
张照行 的第七次作业
查看>>
实验七
查看>>
Js_图片切换左右点击
查看>>
索引调优
查看>>
SSL-ZYC POJ 2560 Freckles
查看>>
vue项目整理
查看>>
【链表】Sort List(归并排序)
查看>>
multiprocess模块
查看>>
TextBox获得焦点,选中文本
查看>>
洛谷P2704 炮兵阵地
查看>>
POJ 1459 Power Network(最大流入门)
查看>>
UVA1204 Fun Game
查看>>
libpointmatcher的filter
查看>>