Oracle 视图 ALL_ANALYTIC_VIEW_LEVEL_CLASS 官方解释,作用,如何使用详细说明
本站中文解释
_MN
Oracle视图ALL_ANALYTIC_VIEW_LEVEL_CLASS_MN用于维护数据仓库中各类分析视图的表结构,以及各层次之间的依赖关系。它可以帮助组织构建一个可追溯的分析体系结构,并标记这些关系,以便进行更高层次的维护和管理。
使用ALL_ANALYTIC_VIEW_LEVEL_CLASS_MN视图,可以查询数据仓库中不同层次的分析视图之间的关联关系,或者找到需要维护或更新的某个分析视图。要使用该视图,必须首先运行以下语句:SELECT * FROM ALL_ANALYTIC_VIEW_LEVEL_CLASS_MN ;后,可以使用多种查询条件来筛选特定的视图,如需要查询特定层次的分析视图,则可以使用如下查询语句:SELECT * FROM ALL_ANALYTIC_VIEW_LEVEL_CLASS_MN WHERE LEVEL_ID = ‘X’ ;
官方英文解释
ALL_ANALYTIC_VIEW_LEVEL_CLASS
describes the level classifications of the analytic views accessible to the current user.
Related Views
-
DBA_ANALYTIC_VIEW_LEVEL_CLASS
describes the level classifications of all analytic views in the database. -
USER_ANALYTIC_VIEW_LEVEL_CLASS
describes the level classifications of the analytic views owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the analytic view |
|
|
|
Name of analytic view |
|
|
Alias of the analytic view dimension in the analytic view |
|
|
|
Alias of the hierarchy in the analytic view |
|
|
|
|
Name of the level in the analytic view |
|
|
Classification associated with the level |
|
|
|
Value of the classification, or NULL if not specified |
|
|
|
|
|
|
|
|
Order of the classification in the list of classifications associated with the level |
|
|
The ID of the container where the data originates. Possible values include:
|
See Also:
-
“DBA_ANALYTIC_VIEW_LEVEL_CLASS”
-
“USER_ANALYTIC_VIEW_LEVEL_CLASS”