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

本站中文解释

背景:
Oracle视图可以在创建表、索引和约束时被引用,它也是一种常用的查询对象。Oracle视图ALL_CUBE_VIEW_COLUMNS主要用来描述 Oracle Analytics Server (OAS)上的OLAP立方体的维数,称为“橄榄球”视图,这些维数构成OLAP立方体的强性和表达能力。

ALL_CUBE_VIEW_COLUMNS用于描述OLAP立方体,它可以帮助用户了解OLAP立方体的组成部分,以及它们之间的统计关系,包括每个维度的层次和各种措施。它还可以为OAS的开发人员提供有关立方体的信息,以及有关维度和维度层次的说明,以及怎样访问立方体数据的说明。

使用:
要使用此视图,请在Oracle Database中运行以下查询:
SELECT *
FROM ALL_CUBE_VIEW_COLUMNS
WHERE CUBE_NAME = ”;

其中必须被替换为指定的OLAP立方体的名称。执行这个查询将返回指定立方体包含的所有维度和措施。它也可以用于查找立方体维度以及每个维度的层次。

官方英文解释

ALL_CUBE_VIEW_COLUMNS describes the columns of the relational views of the OLAP cubes accessible to the current user.

Related Views

  • DBA_CUBE_VIEW_COLUMNS describes the columns of relational views of all OLAP cubes in the database.

  • USER_CUBE_VIEW_COLUMNS describes the columns of relational views of OLAP cubes owned by the current user. This view does not display the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

Owner of the cube

CUBE_NAME

VARCHAR2(128)

Name of a cube, such as UNITS_CUBE

VIEW_NAME

VARCHAR2(128)

Name of a view of the cube, such as PRODUCT_VIEW

COLUMN_NAME

VARCHAR2(128)

Name of a column in the view, such as DIM_KEY or LEVEL_NAME

COLUMN_TYPE

VARCHAR2(7)

Type of the column:

  • MEASURE

  • KEY

OBJECT_NAME

VARCHAR2(128)

Name of the measure or dimension represented in the column

See Also:

  • “DBA_CUBE_VIEW_COLUMNS”

  • “USER_CUBE_VIEW_COLUMNS”


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