Oracle 视图 DBA_IND_COLUMNS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_IND_COLUMNS,它提供了一个表示索引列的一组行给您。该视图会报道出每一个普通索引列的拥有者,所引到的索引表所拥有的索引,以及索引列的名称、位置和的顺序编号。下面代码将会把索引相关信息检索出来:
SELECT owner, index_name, column_name,column_position
FROM dba_ind_columns
WHERE table_name = ‘tablename’
ORDER BY column_name;
官方英文解释
DBA_IND_COLUMNS
describes the columns of all the indexes on all tables and clusters in the database. Its columns are the same as those in ALL_IND_COLUMNS
.
See Also:
“ALL_IND_COLUMNS”