Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Really Wierd Query tuning issue
I have the following query:
select col1, col2
from table
where primary_key = :bind_variable
Table has 56 rows, clustering factor on the PK_INDEX is 53. So not good. I get the following plan:
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)|standard unique index scan retrieving 1 record. This uses 63 Logical IOs. I assume its high because of my high clustering factor. Though I am not sure why so many LIOs if I am getting just 1 row with a unique scan even with a bad clustering factor. If I change the query as follows:
-------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 33 | 2 (50)| | 1 | TABLE ACCESS BY INDEX ROWID| table| 1 | 33 | 2 (50)| |* 2 | INDEX UNIQUE SCAN | table_PK | 56 | | |
-------------------------------------------------------------------------------------
I get the example same query plan, but just 4 logical IOs. Any idea why logical IOs drops so much even though the plan does not change?
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.htmlReceived on Thu Aug 12 2004 - 13:06:28 CDT
-----------------------------------------------------------------
![]() |
![]() |