Oracle 视图 ALL_CUBE_HIER_VIEWS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_CUBE_HIER_VIEWS 视图可以查询某特定的数据库用户拥有的多维度集中的层次关系。这些信息包括维度集名称、层次名称、属性集名称等。
使用这个视图主要是用来帮助我们更容易地管理和检索多维度集中的层次关系。我们可以使用它来查询某个用户拥有的多维度集,从而可以了解这些维度在多少个表中、有多少层次关系,甚至可以找到有哪些明细字段是在哪些表结构中。
例子:
SELECT * FROM all_cube_hier_views;
这个查询可以帮助我们获取当前用户所拥有的多个多维度层次的仔细信息,如dim_set_name,hier_name,prop_set_name等。
官方英文解释
ALL_CUBE_HIER_VIEWS
describes the hierarchies for the OLAP cube dimensions accessible to the current user.
Related Views
-
DBA_CUBE_HIER_VIEWS
describes the hierarchies for all OLAP cube dimensions in the database. -
USER_CUBE_HIER_VIEWS
describes the hierarchies for the OLAP cube dimensions owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the cube dimension |
|
|
|
Name of a cube dimension, such as |
|
|
|
Name of a hierarchy for the cube dimension, such as |
|
|
|
Name of a view of the hierarchy, such as |
See Also:
-
“DBA_CUBE_HIER_VIEWS”
-
“USER_CUBE_HIER_VIEWS”