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

本站中文解释

Oracle视图USER_CLUSTERING_TABLES用于查询所有被归类的表。该视图显示当前用户拥有的所有配置的归类表的信息,包括表的名称、表归类的类型以及归类的名称。

可以使用如下SQL语句来查询USER_CLUSTERING_TABLES:

SELECT owner, table_name, clustering_type, clustering_name
FROM user_clustering_tables;

官方英文解释

USER_CLUSTERING_TABLES describes the tables with an attribute clustering clause owned by the user. Its columns are the same as those in ALL_CLUSTERING_TABLES.

See Also:

  • “ALL_CLUSTERING_TABLES”

  • Oracle Database Data
    Warehousing Guide
    for information about attribute clustering with zone maps


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