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

本站中文解释

All_dim_child_of是oracle 11g中的一个数据字典视图,主要用来获取维度中的子项目及其父项目的关系。它由分析型OLAP(Analytic OLAP,AOL)维度数据存储(Analytic Workspaces)分配的维度构成。

这个视图提供了一个多级结构来组织维度结构,每个维度都可以包含一个由父子级关系(一个或多个父级对象,以及一个或多个子对象)组成的维度树。

使用这个视图可以快速查询父子之间的关系,也可以获取每个维度树根结点的信息,同时方便地把每一个维度的层次结构转变成关系式结构。

这个视图在数据仓库分析、数据处理以及表格报表的分析中得到广泛的应用。

官方英文解释

ALL_DIM_CHILD_OF describes hierarchical relationships of 1 to n between the pairs of levels in the dimensions accessible to the current user.

Related Views

  • DBA_DIM_CHILD_OF describes all such hierarchical relationships in the database.

  • USER_DIM_CHILD_OF describes all such hierarchical attributes in the current user’s schema.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of the dimension

DIMENSION_NAME

VARCHAR2(128)

NOT NULL

Name of the dimension

HIERARCHY_NAME

VARCHAR2(128)

Hierarchy name

POSITION

NUMBER

NOT NULL

Hierarchical position within this hierarchy, position 1 being the most detailed

CHILD_LEVEL_NAME

VARCHAR2(128)

Child side of 1:n relationship

JOIN_KEY_ID

VARCHAR2(40)

If non-null, then the child joins to the parent

PARENT_LEVEL_NAME

VARCHAR2(128)

Parent side of 1:n relationship in relation to the CHILD_LEVEL_NAME

See Also:

  • “DBA_DIM_CHILD_OF”

  • “USER_DIM_CHILD_OF”


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