sql执行历史-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3502606
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2021-06-08 17:09:26


  1. -- sql 历史

  2. set lines 200
  3. set pages 1000
  4. col shijian for a13
  5. col execu_d for 999999
  6. col bg_d for 9999999999
  7. col dr_d for 9999999999
  8. col et_d for 99999999
  9. col ct_d for 99999999
  10. col io_time for 999999
  11. col clus_time for 999999
  12. col ap_time for 999999
  13. col cc_time for 999999
  14. col et_onetime for 999999

  15. select to_char(b.end_interval_time, 'yyyy-mm-dd hh24') shijian,
  16.        plan_hash_value,
  17.        round(sum(a.executions_delta),1) exec_cnt,
  18.        round(sum(a.buffer_gets_delta),1) buffer_get,
  19.        round(sum(a.disk_reads_delta),1) disk_read,
  20.        round(sum(a.elapsed_time_delta / 1000000),1) et_d,
  21.        round(sum(a.cpu_time_delta / 1000000),1) ct_d,
  22.        round(sum(iowait_delta / 1000000),1) io_time,
  23.        round(sum(clwait_delta / 1000000),1) clus_time,
  24.        round(sum(apwait_delta / 1000000),1) ap_time,
  25.        round(sum(ccwait_delta / 1000000),1) cc_time,
  26.        round(decode(sum(a.executions_delta), 0,
  27.               sum(a.buffer_gets_delta),
  28.               round(sum(a.buffer_gets_delta) / sum(a.executions_delta), 0)),1) get_onetime,
  29.        round(decode(sum(a.executions_delta), 0,
  30.               sum(a.rows_processed_delta),
  31.               round(sum(a.rows_processed_delta) / sum(a.executions_delta), 0)),1) rows_onetime,
  32.       round( decode(sum(a.executions_delta), 0,
  33.               sum(a.elapsed_time_delta / 1000),
  34.               round(sum(a.elapsed_time_delta / 1000) /
  35.                     sum(a.executions_delta), 0)),1) exec_ms
  36.   from dba_hist_sqlstat a, dba_hist_snapshot b
  37.  where a.snap_id = b.snap_id
  38.    and a.instance_number = b.instance_number
  39.    and a.sql_id = '&1'
  40.  group by to_char(b.end_interval_time, 'yyyy-mm-dd hh24'),plan_hash_value
  41.  order by 1,2;
展示一条sql执行的历史情况
阅读(12427) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图