设为首页 加入收藏

TOP

Oracle等待事件内容详解(四)
2017-06-22 10:23:31 】 浏览:404
Tags:Oracle 等待 事件 内容 详解
;             substr(s.SQL_TEXT, 1, 500),
              s.DISK_READS
        from v$sql s
        order by s.DISK_READS desc)
where rownum < 20
---------------------------------------查看哪些会话正在等待IO资源-------------------------------------
SELECT username, program, machine, sql_id
FROM V$SESSION
WHERE EVENT LIKE 'db file%read';
----------------------------------查看正在等待IO资源的对象-----------------------------------
SELECT d.object_name, d.object_type, d.owner
FROM V$SESSION s, dba_objects d
WHERE EVENT LIKE 'db file%read'
  and s.ROW_WAIT_OBJ# = d.object_id


---------------------------查看redo日志切换频率---------------------------------------------
Select round(FIRST_TIME, 'DD'), THREAD#, Count(SEQUENCE#)
From v$log_history
Group By round(FIRST_TIME, 'DD'), THREAD#
Order By 1, 2


SELECT  trunc(first_time) "Date",
      to_char(first_time, 'Dy') "Day",
      count(1) "Total",
      SUM(decode(to_char(first_time, 'hh24'),'00',1,0)) "h0",
      SUM(decode(to_char(first_time, 'hh24'),'01',1,0)) "h1",
      SUM(decode(to_char(first_time, 'hh24'),'02',1,0)) "h2",
      SUM(decode(to_char(first_time, 'hh24'),'03',1,0)) "h3",
      SUM(decode(to_char(first_time, 'hh24'),'04',1,0)) "h4",
      SUM(decode(to_char(first_time, 'hh24'),'05',1,0)) "h5",
      SUM(decode(to_char(first_time, 'hh24'),'06',1,0)) "h6",
      SUM(decode(to_char(first_time, 'hh24'),'07',1,0)) "h7",
      SUM(decode(to_char(first_time, 'hh24'),'08',1,0)) "h8",
      SUM(decode(to_char(first_time, 'hh24'),'09',1,0)) "h9",
      SUM(decode(to_char(first_time, 'hh24'),'10',1,0)) "h10",
      SUM(decode(to_char(first_time, 'hh24'),'11',1,0)) "h11",
      SUM(decode(to_char(first_time, 'hh24'),'12',1,0)) "h12",
      SUM(decode(to_char(first_time, 'hh24'),'13',1,0)) "h13",
      SUM(decode(to_char(first_time, 'hh24'),'14',1,0)) "h14",
      SUM(decode(to_char(first_time, 'hh24'),'15',1,0)) "h15",
      SUM(decode(to_char(first_time, 'hh24'),'16',1,0)) "h16",
      SUM(decode(to_char(first_time, 'hh24'),'17',1,0)) "h17",
      SUM(decode(to_char(first_time, 'hh24'),'18',1,0)) "h18",
      SUM(decode(to_char(first_time, 'hh24'),'19',1,0)) "h19",
      SUM(decode(to_char(first_time, 'hh24'),'20',1,0)) "h20",
      SUM(decode(to_char(first_time, 'hh24'),'21',1,0)) "h21",
      SUM(decode(to_char(first_time, 'hh24'),'22',1,0)) "h22",
      SUM(decode(to_char(first_time, 'hh24'),'23',1,0)) "h23"
FROM    V$log_history
group by trunc(first_time), to_char(first_time, 'Dy')
Order by 1


二、33个常见的等待事件
1. Buff

首页 上一页 1 2 3 4 5 6 7 下一页 尾页 4/8/8
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇RHEL Pacemaker中配置STONITH 下一篇MySQL的四种事务隔离级别

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目