監控Oracle索引的使用方式

來源:互聯網
上載者:User

從Oracle 9i開始,可以監控Oracle索引的使用方式,具體方法如下:

alter index <schema>.<index>  MONITORING USAGE;   

對某個INDEX開啟監控後,就可以觀察該INDEX是否被使用:

如果要取消對索引使用方式的監控,使用下列SQL:

alter index <schema>.<index>  NOMONITORING USAGE;   

要注意的是:索引使用方式監控,會增加部分系統開銷。

   select index_name,monitoring,used,start_monitoring,end_monitoring 

   from v$object_usage; 

INDEX_NAME                  MONITORING USED START_MONITORING    END_MONITORING

----------------------------------------------------------------------------------------

AA                                  NO  YES 06/04/2006 12:02:38 06/05/2006 13:47:39                       

AA1                                 NO  YES 06/04/2006 12:02:40 06/05/2006 13:47:39                       

要注意的是,由於V$OBJECT_USAGE視圖限制了只顯示目前使用者下被監控的索引的情況,因此,通過其他使用者登入資料庫,將無法看到,如果要查看所有使用者下的被監控的索引的情況,使用如下SQL:

select u.name owner, io.name index_name, t.name table_name, 

           decode(bitand(i.flags, 65536), 0, 'NO', 'YES') monitoring, 

           decode(bitand(ou.flags, 1), 0, 'NO', 'YES') used, 

           ou.start_monitoring start_monitoring, 

           ou.end_monitoring   end_monitoring 

 from sys.user$ u, sys.obj$ io, sys.obj$ t, sys.ind$ i, sys.object_usage ou 

         where i.obj# = ou.obj# 

         and io.obj# = ou.obj# 

         and t.obj# = i.bo#

         and u.user# = io.owner#

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.