WHERE
clauses.
Note: Oracle automatically creates indexes, or uses existing indexes, on the keys and expressions of unique and primary keys that you define with integrity constraints. |
Indexing low selectivity columns can be helpful if the data distribution is skewed so that one or two values occur much less often than other values.
UPDATE
statements that modify
indexed columns
and INSERT
and DELETE
statements
that modify indexed tables take longer than if there were no index. Such SQL
statements must modify data in indexes as well as data in tables. They also
generate additional undo and redo.WHERE
clauses with functions or operators.
A WHERE
clause that uses a function, other
than MIN
or MAX
, or an operator with
an indexed key does not make available the access path that uses the index
except with function-based indexes.INSERT
, UPDATE
,
and DELETE
statements access the parent and child
tables. Such an index allows UPDATE
s
and DELETE
s on the parent table without share locking the
child table.INSERT
s, UPDATE
s,
and DELETE
s and the use of the space required to store the
index. You might want to experiment by comparing the processing times of the
SQL statements with and without indexes. You can measure processing time with
the SQL trace facility.
See Also:
Oracle9i Application Developer‘s Guide - Fundamentals for more information on the effects of foreign keys on locking |
A composite index contains more than one key column. Composite indexes can provide additional advantages over single-column indexes:
Sometimes two or more columns or expressions, each with poor selectivity, can be combined to form a composite index with higher selectivity.
If all columns selected by a query are in a composite index, then Oracle can return these values from the index without accessing the table.
A SQL statement can use an access path involving a composite index if the statement contains constructs that use a leading portion of the index.
Note: This is no longer the case with index skip scans. See "Index Skip Scans". |
A leading portion of an index is a set of one or more columns that
were specified first and consecutively in the list of columns in
the CREATE
INDEX
statement that created
the index. Consider
this CREATE
INDEX
statement:
CREATE INDEX comp_ind ON table1(x, y, z);
x
, xy
,
and xyz
combinations of columns are leading portions of
the indexyz
, y
,
and z
combinations of columns are not leading
portions of the indexFollow these guidelines for choosing keys for composite indexes:
WHERE
clause conditions combined
with AND
operators, especially if their combined
selectivity is better than the selectivity of either key individually.Of course, consider the guidelines associated with the general performance advantages and trade-offs of indexes described in the previous sections.
Follow these guidelines for ordering keys in composite indexes:
WHERE
clauses make up a leading portion.WHERE
clauses more frequently, then be sure to
create the index so that the more frequently selected keys make up a leading
portion to allow the statements that use only these keys to use the
index.WHERE
clauses equally often, then ordering these
keys from most selective to least selective in
the CREATE
INDEX
statement best
improves query performance.WHERE
clauses equally often but the data is
physically ordered on one of the keys, then place that key first in the
composite index.Choosing Columns and Expressions to Index,布布扣,bubuko.com
Choosing Columns and Expressions to Index
原文:http://www.cnblogs.com/reynold-lei/p/3572920.html