DBA_INDEXES
DBA_INDEXES视图提供所有用户的表上的索引信息。
列名 | 类型 | 描述 |
owner | varchar | 索引的所有者 |
schema_name | varchar | 索引所在的模式名称 |
index_name | varchar | 索引名称 |
index_type | text | 索引类型 |
table_owner | text | 索引所在表的所有者 |
table_name | varchar | 索引所在表的名称 |
table_type | text | 索引所在表的类型 |
uniqueness | text | 是否为唯一索引 |
compression | char | 索引是否被压缩 |
tablespace_name | text | 索引所在表空间名称 |
logging | text | 是否记录对索引的修改 |
status | text | 索引的状态 |
partitioned | char | 索引是否为分区索引 |
temporary | char | 是否为临时索引 |
secondary | char | 是否为辅助索引 |
join_index | char | 是否为关联索引 |
dropped | char | 索引是否已删除且在回收站中 |