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

本站中文解释

Oracle视图ALL_ANALYTIC_VIEW_DIM_CLASS用来获取所有大数据分析视图的维度和类别信息。它可以帮助开发者跟踪每个维度的维度类型、编号、名称、描述和状态等。

可以使用以下SQL语句检索ALL_ANALYTIC_VIEW_DIM_CLASS视图:
SELECT *
FROM ALL_ANALYTIC_VIEW_DIM_CLASS
WHERE analytic_view_name = ”;

其中, 是您想检索的分析视图的名称。

通过ALL_ANALYTIC_VIEW_DIM_CLASS视图的查询,您还可以获取每个维度的所有子维度的细节:
SELECT *
FROM ALL_ANALYTIC_VIEW_DIM_CLASS
WHERE analytic_view_name = ”
AND parent_dim_id = ;

其中, 是要检索子维度的父维度ID。

ALL_ANALYTIC_VIEW_DIM_CLASS视图可以帮助开发人员了解用于构建特定大数据分析视图的维度,并了解其具体结构和信息。

官方英文解释

ALL_ANALYTIC_VIEW_DIM_CLASS describes the classifications of the attribute dimensions in the analytic views accessible to the current user.

Related Views

  • DBA_ANALYTIC_VIEW_DIM_CLASS describes the classifications of the attribute dimensions in all analytic views in the database.

  • USER_ANALYTIC_VIEW_DIM_CLASS describes the classifications of the attribute dimensions in the analytic views 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 analytic view

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

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).

See Also:

  • “DBA_ANALYTIC_VIEW_DIM_CLASS”

  • “USER_ANALYTIC_VIEW_DIM_CLASS”


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