You can find out more about indexes through views in the data dictionary.
There are two basic views that contain information about indexes, the USER_INDEXES
view and the USER_IND_COLUMNS
view.
The USER_INDEXES
view contains the following columns, among others:
INDEX_NAME: | The name of the index |
INDEX_TYPE: | The type of index |
TABLE_OWNER: | The schema that owns the table the index is associated with |
TABLE_NAME: | The name of the table the index is associated with |
UNIQUENESS: | Will either have the value of UNIQUE or NONUNIQUE |
TABLESPACE_NAME: | The name of the tablespace that contains the index |
BLEVEL: | The depth of the B*-tree structure |
LEAF_BLOCKS: | The number of leaf blocks in the index |
DISTINCT_KEYS: | The number of distinct values in the index |
NUM_ROWS: | The number of rows in the index |