激情五月天婷婷,亚洲愉拍一区二区三区,日韩视频一区,a√天堂中文官网8

<ul id="buwfs"><strike id="buwfs"><strong id="buwfs"></strong></strike></ul>
    <output id="buwfs"></output>
  • <dfn id="buwfs"><source id="buwfs"></source></dfn>
      <dfn id="buwfs"><td id="buwfs"></td></dfn>
      <div id="buwfs"><small id="buwfs"></small></div>
      <dfn id="buwfs"><source id="buwfs"></source></dfn>
      1. <dfn id="buwfs"><td id="buwfs"></td></dfn>
        始創(chuàng)于2000年 股票代碼:831685
        咨詢熱線:0371-60135900 注冊有禮 登錄
        • 掛牌上市企業(yè)
        • 60秒人工響應(yīng)
        • 99.99%連通率
        • 7*24h人工
        • 故障100倍補(bǔ)償
        全部產(chǎn)品
        您的位置: 網(wǎng)站首頁 > 幫助中心>文章內(nèi)容

        Oracle 中定位重要(消耗資源多)的SQL

        發(fā)布時間:  2012/9/12 17:10:41

        在分析SQL性能的時候,經(jīng)常需要確定資源消耗多的SQL,總結(jié)如下:

        1 查看值得懷疑的SQL
        select substr(to_char(s.pct,'99.00'),2)||'%'load,

               s.executions executes,

               p.sql_text-
         


        from(select address,

                    disk_reads,

                    executions,

                    pct,

                    rank() over(order by disk_reads desc) ranking

                 from(select address,

                             disk_reads,

                             executions,

                             100*ratio_to_report(disk_reads) over() pct

                         from sys.v_$sql

                        where command_type!=47)

                where disk_reads>50*executions) s,

               sys.v_$sqltext p

        where s.ranking<=5

          and p.address=s.address

        order by 1, s.address, p.piece;

        2 查看消耗內(nèi)存多的sql

        select b.username ,a.buffer_gets ,a.executions,

               a.disk_reads/decode(a.executions,0,1,a.executions),a.sql_text SQL

        from v$sqlarea a,dba_users b

        where a.parsing_user_id = b.user_id

         and a.disk_reads >10000

        order by disk_reads desc;

        3 查看邏輯讀多的SQL
        select*

        from(select buffer_gets, sql_text

             from v$sqlarea

             where buffer_gets>500000

             order by buffer_gets desc)

        where rownum<=30;

        4 查看執(zhí)行次數(shù)多的SQL

        select sql_text, executions

        from(select sql_text, executions from v$sqlarea order by executions desc)

        where rownum<81;

        5 查看讀硬盤多的SQL

        select sql_text, disk_reads

        from(select sql_text, disk_reads from v$sqlarea order by disk_reads desc)

        where rownum<21;

        6 查看排序多的SQL

        select sql_text, sorts

        from(select sql_text, sorts from v$sqlarea order by sorts desc)

        where rownum<21;

        7 分析的次數(shù)太多,執(zhí)行的次數(shù)太少,要用綁變量的方法來寫sql

        set pagesize 600;

        set linesize 120;

        select substr(sql_text,1,80) "sql",count(*),sum(executions) "totexecs"

        from v$sqlarea

        where executions<5

        group by substr(sql_text,1,80)

        having count(*)>30

        order by 2;

        8 游標(biāo)的觀察
        set pages 300;

        select sum(a.value), b.name

        from v$sesstat a, v$statname b

        where a.statistic#=b.statistic#

        and b.name='opened cursors current'

        group by b.name;

         

        select count(0) from v$open_cursor;

         

        select user_name, sql_text,count(0)

        from v$open_cursor

        group by user_name, sql_text

        having count(0)>30;

        9 查看當(dāng)前用戶&username執(zhí)行的SQL
        select sql_text

        from v$sqltext_with_newlines

        where(hash_value, address) in

             (select sql_hash_value, sql_address

              from v$session

              where username='&username')

        order by address, piece;

         


        本文出自:億恩科技【mszdt.com】

        服務(wù)器租用/服務(wù)器托管中國五強(qiáng)!虛擬主機(jī)域名注冊頂級提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]

      2. 您可能在找
      3. 億恩北京公司:
      4. 經(jīng)營性ICP/ISP證:京B2-20150015
      5. 億恩鄭州公司:
      6. 經(jīng)營性ICP/ISP/IDC證:豫B1.B2-20060070
      7. 億恩南昌公司:
      8. 經(jīng)營性ICP/ISP證:贛B2-20080012
      9. 服務(wù)器/云主機(jī) 24小時售后服務(wù)電話:0371-60135900
      10. 虛擬主機(jī)/智能建站 24小時售后服務(wù)電話:0371-60135900
      11. 專注服務(wù)器托管17年
        掃掃關(guān)注-微信公眾號
        0371-60135900
        Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權(quán)所有  地址:鄭州市高新區(qū)翠竹街1號總部企業(yè)基地億恩大廈  法律顧問:河南亞太人律師事務(wù)所郝建鋒、杜慧月律師   京公網(wǎng)安備41019702002023號
          0
         
         
         
         

        0371-60135900
        7*24小時客服服務(wù)熱線