Oracle 视图 DBA_CLU_COLUMNS 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图DBA_CLU_COLUMNS是用于查询分区索引列表的视图,其中每一行都代表一个分区索引及其所包含的列。

使用DBA_CLU_COLUMNS视图要查询分区索引的列,需要用以下SQL语句:

SELECT *
FROM DBA_CLU_COLUMNS
WHERE index_name = ‘index_name’;

这条查询语句读取DBA_CLU_COLUMNS视图中列名为index_name的行,这样就可以获取相关索引包含的列。

官方英文解释

DBA_CLU_COLUMNS maps all table columns to related cluster columns.

Related View

USER_CLU_COLUMNS maps all table columns owned by the current user to related cluster columns. This view does not display the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of the cluster

CLUSTER_NAME

VARCHAR2(128)

NOT NULL

Name of the cluster

CLU_COLUMN_NAME

VARCHAR2(128)

NOT NULL

Key column in the cluster

TABLE_NAME

VARCHAR2(128)

NOT NULL

Clustered table name

TAB_COLUMN_NAME

VARCHAR2(4000)

Key column or attribute of the object type column

See Also:

“USER_CLU_COLUMNS”


数据运维技术 » Oracle 视图 DBA_CLU_COLUMNS 官方解释,作用,如何使用详细说明