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

本站中文解释

ALL_ANALYTIC_VIEW_HIER_CLS_AE是Oracle 12c中的一个特殊的视图,用于封装优化数据网格层次结构准备的活动层级和父子表,使他们可以以正确的方式被查询。它与从ALL_ANALYTIC_VIEW_HIER_CLS中解析出来的表结构相同,包括优化表、索引、和外键。

其用途在于维护数据网格的正确性,通过它可以访问特定活动层级的层级和子表的元数据信息,这些元数据将使查询更300彩票官2019网站方便、更高效。

你可以通过运行SELECT * FROM ALL_ANALYTIC_VIEW_HIER_CLS_AE 的语句来使用这个视图。这个语句将查询出活动索引和索引细节。可以使用这个信息来检查高效索引是否存在,或者检查激活层次结构是否已编制完毕。这个视图还可以用来检查索引被激活前层次结构中的行数,或者查看父子表的信息。

官方英文解释

ALL_ANALYTIC_VIEW_HIER_CLS_AE describes the classifications of the hierarchies in the analytic views (across all editions) accessible to the current user.

Related Views

  • DBA_ANALYTIC_VIEW_HIER_CLS_AE describes the classifications of the hierarchies in all analytic views (across all editions) in the database.

  • USER_ANALYTIC_VIEW_HIER_CLS_AE describes the classifications of the hierarchies in the analytic views (across all editions) owned by the current user. This view does not display the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of the hierarchy

ANALYTIC_VIEW_NAME

VARCHAR2(128)

NOT NULL

Name of the analytic view

DIMENSION_ALIAS

VARCHAR2(128)

Alias of the attribute dimension in the analytic view

HIER_ALIAS

VARCHAR2(128)

Alias of the hierarchy in the attribute dimension in the analytic view

CLASSIFICATION

VARCHAR2(128)

Classification associated with the hierarchy

VALUE

CLOB

Value of the classification, or NULL if not specified

LANGUAGE

VARCHAR2(64)

NLS_LANGUAGE value associated with the classification, or NULL if not specified

ORDER_NUM

NUMBER

NOT NULL

Order of the classification in the list of classifications associated with the hierarchy

ORIGIN_CON_ID

NUMBER

The ID of the container where the data originates. Possible values include:

  • 0: This value is used for rows in non-CDBs. This value is not used for CDBs.

  • n: This value is used for rows containing data that originate in the container with container ID n (n = 1 if the row originates in root).

EDITION_NAME

VARCHAR2(128)

 

Name of the application edition where the analytic view is defined

Note:

This view is available starting with Oracle Database release 21c, version 21.5.

See Also:

  • “DBA_ANALYTIC_VIEW_HIER_CLS_AE”

  • “USER_ANALYTIC_VIEW_HIER_CLS_AE”


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