zoukankan      html  css  js  c++  java
  • OWI之direct path read

    <pre name="code" class="sql"> select sid,event,p1,p2,p3 from v$session_wait where sid=9;
           SID        event                 p1      p2      p3
     1	9	direct path read	13	1535744	128
    
    p1 要读取的绝对文件号
    
    p2 读取的起始块号
    
    p3 要读的块数
    
    SQL> select * from v$mystat where rownum<2;
    
           SID STATISTIC#	   VALUE
    ---------- ---------- ----------
          1427	    0	       0
    
    SQL> select count(*) from F_AGT_COMR_INTDIST_H;
    
    
    SQL> select sid,event,p1,p2,p3 from v$session_wait where sid=1427;
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    18	   907780	 124
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    29	   920324	 124
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    24	  1141376	 128
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    19	   426884	 124
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    12	  1010945	 127
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    44	    87296	 128
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    26	   420356	 124
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    22	   857856	 128
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    16	  1462016	 128
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    14	   972288	 128
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    10	   864130	 126
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							     7	   991880	 120
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							     7	   997632	 128
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							     5	  1409024	 128
    
    SQL> /
    
           SID EVENT								    P1	       P2	  P3
    ---------- ---------------------------------------------------------------- ---------- ---------- ----------
          1427 direct path read							    51	   747648	 128
    
    
    正常情况下P3值约等于多块读的块数
    


    
                                        
    
  • 相关阅读:
    解决pandas_datareader的get_data_yahoo不能读取数据的问题
    python 中使用pandas_datareader 报错 ImportError: cannot import name ‘is_list_like’
    loc、iloc、ix 区别
    利用list元素求和组成某一个固定值
    测试id
    Oracle数据库从入门到精通 多表查询知识以及范例
    Oracle数据库从入门到精通 单行函数问题
    Oracle从入门到精通 限定查询和排序查询的问题
    关于Oracle中sys、system和Scott用户下的数据库连接问题
    Java学习笔记——关于位运算符的问题
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13352184.html
Copyright © 2011-2022 走看看