Oracle 视图 ALL_ANALYTIC_VIEW_FACT_COLS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_ANALYTIC_VIEW_FACT_COLS视图提供用于分析和数据挖掘的指标,以及分析视图或仪表盘所包含的列信息。
该视图具有以下列:
OWNER:视图或仪表板所有者的用户名。
view_name:视图或仪表板名称。
column_name:视图或仪表板中的列名称。
parameter_name:度量的名称(仅用于表列中的参数)。
expression:度量的表达式,该表达式用于计算度量值。
description:可用于描述度量的任何额外信息或说明。
使用方法:SELECT * FROM ALL_ANALYTIC_VIEW_FACT_COLS;
官方英文解释
ALL_ANALYTIC_VIEW_FACT_COLS
describes the fact columns of the analytic views accessible to the current user.
Related Views
-
DBA_ANALYTIC_VIEW_FACT_COLS
describes the fact columns of all analytic views in the database. -
USER_ANALYTIC_VIEW_FACT_COLS
describes the fact columns of the analytic views owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
NOT NULL |
Owner of the analytic view |
|
|
NOT NULL |
Name of the analytic view |
|
|
|
Alias of the fact table in the analytic view |
|
|
NOT NULL |
Name of the column |
|
|
NOT NULL |
Alias of the column. Use this value as the identifier for the fact column in a query. |
|
|
NOT NULL |
Order of the column in the fact table |
|
|
|
The ID of the container where the data originates. Possible values include:
|
Note:
This view is available starting with Oracle Database 21c.
See Also:
-
“DBA_ANALYTIC_VIEW_FACT_COLS”
-
“USER_ANALYTIC_VIEW_FACT_COLS”