ALL_INDEXES
- ALL_INDEXES视图提供当前用户可访问表上的索引信息。
列名 | 类型 | 描述 |
owner | text | 索引的所有者 |
schema_name | text | 索引所属的模式名 |
index_name | text | 索引名字 |
index_type | text | 索引类型,如btree类型 |
table_owner | text | 索引对象的所有者 |
table_name | text | 索引对象的表名 |
table_type | text | 表的类型 |
uniqueness | text | 索引是唯一的(UNIQUE)还是非唯一的(NONUNIQUE) |
compression | Char(1) | 是否启用索引压缩 |
tablespace_name | text | 索引所属的表空间名字 |
logging | text | 索引日志是否记录 |
status | text | 索引是否有效 |
partitioned | Char(3) | 索引是否已分区 |
temporary | Char(1) | 索引是否在临时表上 |
secondary | Char(1) | 仅为支持兼容性。该值始终为N |
join_index | Char(3) | 仅为支持兼容性。该值始终为NO |
dropped | Char(3) | 仅为支持兼容性。该值始终为NO |