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

本站中文解释

ALL_ATTRIBUTE_DIM_CLASS_AE视图显示的是分析引擎(Analytic Engine,AE)中定义的查询维度的属性,其中包含每个查询维度的名称,类型,标签和描述。Oracle创建此视图,以帮助AE用户进行查询分析和报表制作,并为用户提供关于每个查询维度的更多信息,以及用于识别其各自特点和功能的有用信息。

ALL_ATTRIBUTE_DIM_CLASS_AE视图可以使用SELECT语句来读取数据,可以选择仅返回某些行。例如,可以使用SELECT语句来显示具有指定类型的特定维度的名称,例如:
SELECT DIMENSION_NAME FROM ALL_ATTRIBUTE_DIM_CLASS_AE WHERE DIMENSION_TYPE = ‘PROVINCE’;

上述SELECT语句将仅返回具有指定类型(“PROVINCE”)的维度的名称,这样用户将有更好的把了解每个维度的概念。此外,用户还可以利用ALL_ATTRIBUTE_DIM_CLASS_AE视图检索特定维度的标签和描述,并获取存储在特定维度内的数据。

官方英文解释

ALL_ATTRIBUTE_DIM_CLASS_AE describes the classifications of the attribute dimensions (across all editions) accessible to the current user.

Related Views

  • DBA_ATTRIBUTE_DIM_CLASS_AE describes the classifications of all attribute dimensions (across all editions) in the database.

  • USER_ATTRIBUTE_DIM_CLASS_AE describes the classifications of the attribute dimensions (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 attribute dimension

DIMENSION_NAME

VARCHAR2(128)

NOT NULL

Name of the attribute dimension

CLASSIFICATION

VARCHAR2(128)

Classification associated with the attribute dimension

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 attribute dimension

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 attribute dimension is defined

Note:

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

See Also:

  • “DBA_ATTRIBUTE_DIM_CLASS_AE”

  • “USER_ATTRIBUTE_DIM_CLASS_AE”


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