欢迎光临
我们一直在努力

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”

赞(0)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。