René Nyffenegger's collection of things on the web | |
René Nyffenegger on Oracle - Most wanted - Feedback
- Follow @renenyffenegger
|
Logical and physical IO with respect to the CBO | ||
By default, the CBO weighs
logical io as expensive as
physical io. This behaviour can be
changed by adjusting
optimizer_index_caching
and optimizer_index_cost_adj.
optimizer_index_cost_adj
The default value of 100 means that an index access to a table is just as expensive as a full table scan.
On most systems, the default value of 100 should be lowered.
optimizer_index_caching
This value is a percentage that indicates how many blocks are found in the
buffer cache when an index is read.
This value is only for index blocks, not for blocks in the table that the index points to.
On most systems, the default value of 0 is too low and should be altered.
|