ALL_INDEXES v15
The ALL_INDEXES
view provides information about the indexes on tables that the current user can access.
Name | Type | Description |
---|---|---|
owner | TEXT | User name of the index owner. |
schema_name | TEXT | Name of the schema in which the index belongs. |
index_name | TEXT | Name of the index. |
index_type | TEXT | The index type is always BTREE . Included for compatibility only. |
table_owner | TEXT | User name of the owner of the indexed table. |
table_name | TEXT | Name of the indexed table. |
table_type | TEXT | Included for compatibility only. Always set to TABLE . |
uniqueness | TEXT | Indicates if the index is UNIQUE or NONUNIQUE . |
compression | CHARACTER(1) | Always set to N (not compressed). Included only for compatibility. |
tablespace_name | TEXT | Name of the tablespace in which the table resides if not 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 | Included only for compatibility. Always set to VALID . |
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. Included only for compatibility. 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 . |