Oracle 视图 ALL_ANALYTIC_VIEW_COLUMNS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图ALL_ANALYTIC_VIEW_COLUMNS用于描述当前用户拥有的所有分析视图的列,分析视图可以将子查询的结果展示为可访问的视图,可以使用该视图访问当前会话的分析视图的列以及元数据信息。它返回的列包括:
VIEW_NAME: 分析视图的名称。
COLUMN_NAME: 分析视图中列的名称。
COLUMN_POSITION: 分析视图中列出现的位置,从1开始计数。
COLUMN_EXPRESSION: 分析视图中定义的列表达式。
COLUMN_DATA_TYPE: 分析视图中列的数据类型。
使用该视图查看当前用户拥有的分析视图及其列如下:
SELECT * FROM ALL_ANALYTIC_VIEW_COLUMNS;
官方英文解释
ALL_ANALYTIC_VIEW_COLUMNS
describes the columns of the analytic views accessible to the current user.
Related Views
DBA_ANALYTIC_VIEW_COLUMNS
describes the columns of all analytic views in the database.USER_ANALYTIC_VIEW_COLUMNS
describes the columns 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 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:
|
See Also:
“DBA_ANALYTIC_VIEW_COLUMNS”
“USER_ANALYTIC_VIEW_COLUMNS”
编辑:一起学习网
标签:视图,名称,用户,英文,可以使用