Oracle 视图 ALL_ANALYTIC_VIEW_COLUMNS_AE 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图是Oracle数据库中的一种数据结构,可以将多个表的数据以及连接(称为联接)中的数据汇总在一起,使用者无需关心数据在哪张表中存放,而只需关心与自己需求相关的数据。ALL_ANALYTIC_VIEW_COLUMNS_AE视图显示了Advanced Analytics Option模块可以用来对数据库中的特定列(columns)进行分析的信息,范围包括表名,列名,可用于分析的列属性,方法,输入和输出数据类型以及可传入的参数的类型。
使用ALL_ANALYTIC_VIEW_COLUMNS_AE视图的工作流程如下:
1. 通过SELECT * FROM ALL_ANALYTICS_VIEW_COLUMNS_AE获取所有列的信息。
2. 使用WHERE子句来筛选想要的信息,可以使用的过滤器包括表名,列名,数据类型等等。
3. 根据过滤结果调用想要的数据分析方法。
4. 可以使用Oracle Analytic Option提供的参数,定制获得感兴趣的数据或分析结果。
官方英文解释
ALL_ANALYTIC_VIEW_COLUMNS_AE
describes the columns of the analytic views (across all editions) accessible to the current user.
Related Views
DBA_ANALYTIC_VIEW_COLUMNS_AE
describes the columns of all analytic views (across all editions) in the database.USER_ANALYTIC_VIEW_COLUMNS_AE
describes the columns 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 |
|
| Alias of the analytic view dimension in the analytic view; for a measure the value is | |
|
| Alias of the analytic view hierarchy within | |
|
|
| Name of the column |
|
|
| The role the attribute plays in the analytic view:
|
|
|
| Datatype of the column |
|
|
| Length of the column (in bytes) |
|
| Decimal precision for the | |
|
| Number of digits to the right of the decimal point in a number | |
|
|
| Indicates whether a column allows NULL values; the value is |
|
| Name of the character set:
| |
|
| Declaration length of the character type column | |
|
| Indicates that the column uses BYTE length semantics (B ) or CHAR length semantics (C ), or whether the datatype is not any of the following (NULL):
| |
|
|
| Order of the column, with the hierarchy columns first followed by measure columns. The columns for a hierarchy are grouped together, listed in their order in the |
|
| 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_COLUMNS_AE”
“USER_ANALYTIC_VIEW_COLUMNS_AE”