DBA_INDEXES v16
The DBA_INDEXES
view provides information about all indexes in the database.
Name | Type | Description |
---|---|---|
owner | TEXT | User name of the index owner. |
schema_name | TEXT | Name of the schema in which the index resides. |
index_name | TEXT | Name of the index. |
index_type | TEXT | The index type is always BTREE . Included only for compatibility. |
table_owner | TEXT | User name of the owner of the indexed table. |
table_name | TEXT | Name of the indexed table. |
table_type | TEXT | Included only for compatibility. Always set to TABLE . |
uniqueness | TEXT | Indicates if the index is UNIQUE or NONUNIQUE . |
compression | CHARACTER(1) | Included only for compatibility. Always set to N (not compressed). |
tablespace_name | TEXT | Name of the tablespace in which the table resides if other than the default tablespace. |
degree | CHARACTER VARYING(10) | Number of threads per instance to scan the index. |
logging | TEXT | Included only for compatibility. Always set to LOGGING . |
status | TEXT | Whether or not the state of the object is valid (VALID or INVALID ). |
partitioned | CHARACTER(3) | Indicates that the index is partitioned. Always set to NO . |
temporary | CHARACTER(1) | Indicates that an index is on a temporary table. Always set to N . |
secondary | CHARACTER(1) | Included only for compatibility. Always set to N . |
join_index | CHARACTER(3) | Included only for compatibility. Always set to NO . |
dropped | CHARACTER(3) | Included only for compatibility. Always set to NO . |