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

本站中文解释

Oracle视图DBA_MVREF_STATS_SYS_DEFAULTS用于查询关于基础统计(supporting statistics)的上下文信息。
这些信息经常被用来帮助 Oracle 识别分析是否执行子查询合并 (subquery unnesting) 或通用索引路径(BIR)步骤。

此视图在 Oracle 12.2 或 11.2 中的可用的列的内容如下:
OWNER – 对象的拥有者
NAME – 对象的名称
SYS_STATS_REF_COUNT – 包含应用于拥有此表的系统统计信息的引用计数
SYS_STATS_MODIFICATION_COUNT – 引用统计信息更改计数

可以使用以下语句从此视图中获取数据:
SELECT *
FROM DBA_MVREF_STATS_SYS_DEFAULTS;

官方英文解释

DBA_MVREF_STATS_SYS_DEFAULTS displays the system-wide defaults for the refresh history statistics properties for materialized views. These values can be altered with the SET_SYSTEM_DEFAULTS procedure by a database administrator.

Related View

This view contains exactly two rows corresponding to the collection-level and retention-period properties; their initial values are TYPICAL and 31 respectively.

USER_MVREF_STATS_SYS_DEFAULTS displays the system-wide defaults for the refresh history statistics properties for materialized views accessible to the current user. These values can be altered with the SET_SYSTEM_DEFAULTS procedure by a database administrator.

Column Datatype NULL Description

PARAMETER_NAME

CHAR(16)

Value of the parameter_name parameter:

  • COLLECTION_LEVEL

  • RETENTION_PERIOD

VALUE

VARCHAR2(40)

The system-wide default value for the parameter

See Also:

“USER_MVREF_STATS_SYS_DEFAULTS”


数据运维技术 » Oracle 视图 DBA_MVREF_STATS_SYS_DEFAULTS 官方解释,作用,如何使用详细说明