Oracle 视图 ALL_ANALYTIC_VIEW_DIMS_AE 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图ALL_ANALYTIC_VIEW_DIMS_AE提供了有关每个数据库中定义的所有应用程序注册(AR)分析视图的汇总信息。它包括以下列:
1. AR全局用户ID(GUID):标识该AR视图的唯一名称。
2. 程序ID:指示发布AR视图的应用程序的唯一标识符。
3. AR视图名:AR视图的唯一名称。
4. 模型名:指示含有该AR视图的模型名称。
5. 维度:指示AR视图包含的维度列的列表。
6. 描述:给AR视图提供的可选描述。
例如,要获取AR视图的全局用户ID和模型名,可以使用以下查询:
SELECT guid, model_name
FROM all_analytic_view_dims_ae
WHERE ar_view_name = ‘my_ar_view_name’;
此外,如果要获取AR视图的所有维度,可以使用以下查询:
SELECT dims
FROM all_analytic_view_dims_ae
WHERE ar_view_name = ‘my_ar_view_name’;
官方英文解释
ALL_ANALYTIC_VIEW_DIMS_AE
describes the attribute dimensions in the analytic views (across all editions) accessible to the current user.
Related Views
DBA_ANALYTIC_VIEW_DIMS_AE
describes the attribute dimensions in all analytic views (across all editions) in the database.USER_ANALYTIC_VIEW_DIMS_AE
describes the attribute dimensions in 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 |
|
|
| Owner of the schema containing the attribute dimension |
|
|
| Name of the attribute dimension |
|
| Alias of the attribute dimension in the analytic view | |
|
| Type of the attribute dimension:
| |
|
| An expression for the name of the ALL member for the attribute dimension | |
|
| An expression for the caption for the ALL member of the attribute dimension, or NULL if not specified | |
|
| An expression for the description for the ALL member of the attribute dimension, or NULL if not specified | |
|
| Indicates whether the reference between the fact table key and the attribute dimension attribute specifies the
| |
|
|
| Order number of the attribute dimension in the analytic view |
|
| 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_DIMS_AE”
“USER_ANALYTIC_VIEW_DIMS_AE”
编辑:568数据
标签:视图,维度,一名,指示,模型