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

本站中文解释

ALL_CUBE_NAMED_BUILD_SPECS是视图,它允许查看当前用户中所有已定义的多维分析(OLAP)对象的外部构建细节。

用法:

该视图允许查询用户拥有权限的CUBE BUILDSPECS中所有参数。它可以提供诸如CUBE BUILDSPEC名称,随多维分析CUBE构建添加的新列,维度复杂性级别和CUBE构建等信息的描述。

将以下SELECT语句提交以检索任何用户定义的CUBE注册的外部构建细节:

SELECT * FROM all_cube_named_build_specs
WHERE Schema_Name=”
AND Cube_Name=”

注意:在上面的查询中,‘’和”要替换为需要检索的注册CUBE的名称。

官方英文解释

ALL_CUBE_NAMED_BUILD_SPECS describes the OLAP cube named build specifications in the database that are accessible by the user.

Related Views

  • DBA_CUBE_NAMED_BUILD_SPECS describes the OLAP cube named build specifications in the database.

  • USER_CUBE_NAMED_BUILD_SPECS describes the OLAP cube named build specifications in the database that are 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 OLAP named build specification

CUBE_NAME

VARCHAR2(128)

NOT NULL

Name of the OLAP cube

NAMED_BUILD_SPEC

CLOB

Name of the OLAP cube named build specification

See Also:

  • “DBA_CUBE_NAMED_BUILD_SPECS”

  • “USER_CUBE_NAMED_BUILD_SPECS”


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