Search notes:

Oracle indexes

Hierarchy of Index type

An index is either
A partitioned index is either a
A local partitioned index is either a

Bitmap join index

s.a. dba_join_ind_columns

See also

A global index is similar to a partitioned table: depending on a criteria, multiple index-partititions are created.
The data dictionary lists available indexes in Oracle: DBA_INDEXES and their columns in dba_ind_columns.
dba_ind_columns allows to query the columns in an index.
dbms_space.create_index_cost determines the cost of creating an index (on an existing table).
An index can be created or made invisible in which case the index is not considered by the optimizer.
Automatic indexing
Bitmap indexes
The error messages
Database objects

Index