zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

Oracle 视图 ALL_ANALYTIC_VIEW_MEAS_CLS_AE 官方解释,作用,如何使用详细说明

Oracle官方 使用 如何 详细 作用 说明 解释
2023-06-13 09:11:09 时间

_T

Oracle视图ALL_ANALYTIC_VIEW_MEAS_CLS_AE_T用于显示数据库中所有的分析视图的度量类型的所有属性的信息。它有以下字段:

owner:表示视图的拥有者。
view_name:视图的名称。
column_name:视图中每一列的字段名称。
measure_name:度量名称。
measure_type:度量类型,即计数(COUNT)、和(SUM)、平均值(AVG)等。
measure_all_columns_usage:指定此度量是否应使用视图中的所有列。

使用此视图可以在Oracle数据库中检查每个分析视图中所有度量类型的属性信息。例如,可以查询某一分析视图中所有字段的度量类型:

SELECT owner,view_name,column_name,measure_name,measure_type,measure_all_columns_usage
FROM all_analytic_view_meas_cls_ae_t
WHERE view_name= MY_ANALYTIC_VIEW

官方英文解释

ALL_ANALYTIC_VIEW_MEAS_CLS_AE describes the classifications of the measures of the analytic views (across all editions) accessible to the current user.

Related Views


DBA_ANALYTIC_VIEW_MEAS_CLS_AE describes the classifications of the measures of all analytic views (across all editions) in the database.


USER_ANALYTIC_VIEW_MEAS_CLS_AE describes the classifications of the measures of the analytic views (across all editions) owned by the current user. This view does not display the OWNER column.


NLS_LANGUAGE value associated with the classification, or NULL if not specified


Order of the classification in the list of classifications associated with the measure


n: This value is used for rows containing data that originate in the container with container ID n (n = 1 if the row originates in root).


Note:

This view is available starting with Oracle Database release 21c, version 21.5.

See Also:


我想要获取技术服务或软件
服务范围:MySQL、ORACLE、SQLSERVER、MongoDB、PostgreSQL 、程序问题
服务方式:远程服务、电话支持、现场服务,沟通指定方式服务
技术标签:数据恢复、安装配置、数据迁移、集群容灾、异常处理、其它问题

本站部分文章参考或来源于网络,如有侵权请联系站长。
数据库远程运维 Oracle 视图 ALL_ANALYTIC_VIEW_MEAS_CLS_AE 官方解释,作用,如何使用详细说明