|
|
缺省的,CBO的确是使用ALL_ROWS
quote
- ALL_ROWS - this is the default costing model.
Access methods are chosen based on their relative costs. This model
attempts to return all the required rows as quickly as possible.
This may compromise the speed that the first row is returned.
- FIRST_ROWS - this is a modified version of ALL_ROWS. Access methods
are still chosen based on their relative costs but emphasis is
placed on methods that return the initial rows more quickly. It is
more likely that indexes will be chosen under FIRST_ROWS.
-By default, CBO uses 'ALL_ROWS' costing. [/COLOR]
Good Metalink article:
http://metalink.oracle.com/metal ... OT&p_id=35934.1 |
|