SQL>CREATE INDEX ord_custname_ix ON orders(custname);
The ORDERS table is frequently queried using the CUSTNAME column in the WHERE clause.
You want to check the impact on the performance of the queries if the index is not available.
You do not want the index to be dropped or rebuilt to perform this test.
Which is the most efficient method of performing this task?
A. disabling the index
B. making the index invisible
C. making the index unusable
D. using the MONITORING USAGE clause for the index
答案:(B)
解析:
《Administrator's guide》 21.3.8, 21.3.9
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/17013648/viewspace-1248917/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/17013648/viewspace-1248917/
本文探讨了在不删除或重建的情况下测试ORD_CUSTNAME_IX索引对查询性能影响的方法。该索引建立在ORDER表的CUSTNAME列上,通过使索引不可见来评估若没有此索引时查询效率的变化。

7083

被折叠的 条评论
为什么被折叠?



