從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#