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

本站中文解释

All_ATTRIBUTE_DIM_ATTR_CLS_AE是Oracle提供的一个系统视图,其涉及到的表包括M_ATTRIBUTEDIMENSION表和M_ATTRIBUTE_IN_VALUE_SETS表。它可以用于查询指定维度名下属性类型、属性、属性值分类和属性值集的相关信息。

语法格式:
SELECT * FROM all_attribute_dim_att_cls_ae WHERE ATTRIBUTE_DIM_NAME = {维度名};

使用示例:
SELECT * FROM all_attribute_dim_att_cls_ae WHERE ATTRIBUTE_DIM_NAME = ‘COUNTRY’;

该查询可以查出所有属于COUNTRY维度的属性类型、属性、属性值分类和属性值集的相关信息。

官方英文解释

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

Related Views

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

  • USER_ATTRIBUTE_DIM_ATTR_CLS_AE describes the attribute 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

ATTRIBUTE_NAME

VARCHAR2(128)

Name of the attribute

CLASSIFICATION

VARCHAR2(128)

Classification associated with the attribute

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

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_ATTR_CLS_AE”

  • “USER_ATTRIBUTE_DIM_ATTR_CLS_AE”


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