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

本站中文解释

USER_CUBE_VIEWS 是一个视图,它可以显示你当前用户拥有的 cube 视图。主要用于存储cube中的维度、度量和属性的信息,可以用于支持 OLAP的分析处理。

该视图的主要列包括 cube_name(cube名称)、view_name(视图名称)、position(member的位置)、column_name(成员名称)等。

使用方法:

1.在SQL之中查询该视图:

SELECT * FROM USER_CUBE_VIEWS;

2.该视图可以用于Oracle OLAP(在line图形及其他方面),可以在查询中提取member的位置、列名称等信息:

SELECT column_name
FROM USER_CUBE_VIEWS
WHERE view_name = ‘My CustomView’;

官方英文解释

USER_CUBE_VIEWS describes the relational views of the OLAP cubes owned by the current user. Its columns (except for OWNER) are the same as those in ALL_CUBE_VIEWS.

See Also:

“ALL_CUBE_VIEWS”


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