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

本站中文解释

Oracle视图ALL_CLUSTER_HASH_EXPRESSIONS是和簇表(cluster table)有关的视图,它提供簇表的哈希表达式,用以表示所列出的簇列(cluster column)的分布情况。在创建簇实例时必须指定哈希函数,它可以定义簇表的分布方式,而ALL_CLUSTER_HASH_EXPRESSIONS视图则可以查询使用哈希函数之后得出的哈希表达式。

使用ALL_CLUSTER_HASH_EXPRESSIONS视图可以查询簇表中所使用的哈希表达式,可以显示出在簇表中每一个列上使用哈希函数之后所构成的哈希表达式,从而建立起每一个簇列和对应的哈希函数实例之间的联系。具体可以使用以下SQL语句来使用ALL_CLUSTER_HASH_EXPRESSIONS视图:

SELECT * FROM ALL_CLUSTER_HASH_EXPRESSIONS;

官方英文解释

ALL_CLUSTER_HASH_EXPRESSIONS displays hash functions for all hash clusters accessible to the current user.

Related Views

  • DBA_CLUSTER_HASH_EXPRESSIONS displays hash functions for all hash clusters in the database.

  • USER_CLUSTER_HASH_EXPRESSIONS displays hash functions for all hash clusters owned by the current user.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of the cluster

CLUSTER_NAME

VARCHAR2(128)

NOT NULL

Name of the cluster

HASH_EXPRESSION

LONG

Text of the hash function of the hash cluster

See Also:

  • “DBA_CLUSTER_HASH_EXPRESSIONS”

  • “USER_CLUSTER_HASH_EXPRESSIONS”


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