Oracle 视图 ALL_ANALYTIC_VIEW_LVLGRPS_AE 官方解释,作用,如何使用详细说明
本站中文解释
ALL_ANALYTIC_VIEW_LVLGRPS_AE是一个只读视图,用于查询用户所拥有的每个分析视图等级分组中的属性。它由所有ALL_ANALYTIC_VIEW_LVLGRPS_AE列组成:
VIEW_LEVEL_GROUP:分析视图级别组的名称
ATTRIBUTE_ORDINAL:属性序号(从1开始)
ATTRIBUTE_NAME:属性的名称
ATTRIBUTE_LABEL:在UI/展示中用于显示属性的标签
ATTRIBUTE_DESC:关于属性的可读性描述
DATATYPE:属性类型
ATTRIBUTE_ORDER:应用于每个属性的定义排序顺序号(从1)
可以通过以下查询使用ALL_ANALYTIC_VIEW_LVLGRPS_AE:
SELECT * FROM ALL_ANALYTIC_VIEW_LVLGRPS_AE view where view.VIEW_LEVEL_GROUP = ‘某等级组’;
此查询用于查询具有指定等级组的所有属性。
官方英文解释
ALL_ANALYTIC_VIEW_LVLGRPS_AE
describes the analytic view measure and level groups of the analytic views (across all editions) accessible to the current user.
Related Views
DBA_ANALYTIC_VIEW_LVLGRPS_AE
describes the analytic view measure and level groups of all analytic views (across all editions) in the database.USER_ANALYTIC_VIEW_LVLGRPS_AE
describes the analytic view measure and level groups of the analytic views (across all editions) owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
| Owner of the analytic view | |
|
| Name of the analytic view | |
|
| Type of the materialized view; one of the following:
| |
|
| Alias of the attribute dimension in the group | |
|
| Alias of the hierarchy associated with the attribute dimension in the group | |
|
| Name of the level in the hierarchy in the group | |
|
| Names of the measures in the group | |
MAT_TABLE_OWNER | VARCHAR2(128) | If the schema for an aggregation table is specified for the analytic view, then the schema owner; otherwise NULL | |
MAT_TABLE_NAME | VARCHAR2(128) | If an aggregation table is specified for an analytic view, then the name of the materialized table; otherwise NULL | |
|
| Order of the groups in the analytic view | |
|
| Order of the levels and measures in the group | |
|
| The ID of the container where the data originates. Possible values include:
| |
|
| Name of the application edition where the analytic view is defined |
Note:
This view is available starting with Oracle Database release 21c, version 21.5.
See Also:
“DBA_ANALYTIC_VIEW_LVLGRPS_AE”
“USER_ANALYTIC_VIEW_LVLGRPS_AE”