Oracle 视图 ALL_ANALYTIC_VIEW_HIER_CLASS 官方解释,作用,如何使用详细说明
本站中文解释
ES
ALL_ANALYTIC_VIEW_HIER_CLASSES是Oracle数据库提供的一个系统视图,它包含了拥有 analytic viewpoint 所需的层次分类 of hierarchical view. 它会显示层次视图的父类,子类,class_id 和Base 的列.
通过使用 ALL_ANALYTIC_VIEW_HIER_CLASSES 视图,我们可以查询层次视图的内容,获取和修改视图的名称和编号,可以介入到Oracle 仓库管理系统中.
例如,我们可以使用以下查询:
SELECT * FROM ALL_ANALYTIC_VIEW_HIER_CLASSES;
这会显示层次视图的父类,子类,class_id 和 Base 的列.
另外,我们还可以使用以下查询更新层次视图的名称:
UPDATE ALL_ANALYTIC_VIEW_HIER_CLASSES SET CLASS_NAME = ‘New Name’ WHERE CLASS_ID = ‘001’;
这样就可以更新指定的层次视图的名称.
官方英文解释
ALL_ANALYTIC_VIEW_HIER_CLASS
describes the classifications of the hierarchies in the analytic views accessible to the current user.
Related Views
-
DBA_ANALYTIC_VIEW_HIER_CLASS
describes the classifications of the hierarchies in all analytic views in the database. -
USER_ANALYTIC_VIEW_HIER_CLASS
describes the classifications of the hierarchies in the analytic views owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the hierarchy |
|
|
|
Name of the analytic view |
|
|
Alias of the attribute dimension in the analytic view |
|
|
|
Alias of the hierarchy in the attribute dimension in the analytic view |
|
|
|
Classification associated with the hierarchy |
|
|
|
Value of the classification, or NULL if not specified |
|
|
|
|
|
|
|
|
Order of the classification in the list of classifications associated with the hierarchy |
|
|
The ID of the container where the data originates. Possible values include:
|
See Also:
-
“DBA_ANALYTIC_VIEW_HIER_CLASS”
-
“USER_ANALYTIC_VIEW_HIER_CLASS”