Oracle 视图 USER_CLUSTERING_JOINS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图USER_CLUSTERING_JOINS是Oracle数据库的系统视图,其中包含一系列信息,用于查询实体是否已与任何Oracle簇关联。 具体地说,用户可以使用此视图来确定给定的表/索引是否已簇化,以及如果已簇化,什么簇化属性正在使用。此外,视图还提供了关于簇间加入的其他详细信息。
使用此视图,用户可以执行以下查询:
SELECT * FROM USER_CLUSTERING_JOINS WHERE TABLE_NAME=’tableName’;
该查询将返回包含有关tableName表与簇相关联的所有信息。此查询可以发现,表是否正在按簇组织或索引,表正在使用什么簇属性,如果有多个簇间加入,它们之间的关系等。
官方英文解释
USER_CLUSTERING_JOINS
describes joins to the dimension tables associated with tables with an attribute clustering clause owned by the user. Its columns (except for OWNER
) are the same as those in ALL_CLUSTERING_JOINS
.
See Also:
-
“ALL_CLUSTERING_JOINS”
-
Oracle Database Data
Warehousing Guide for information about attribute clustering with zone maps