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

本站中文解释

Oracle数据库中的视图DBA_AUTO_MV_CONFIG用于查看和管理建立在数据库实例中的自动增量统计视图。

使用DBA_AUTO_MV_CONFIG视图可以查看关联到一个特定表或模式的自动增量统计视图的信息。它还允许用户控制基于特定表或模式的视图是否可用,或者在基础表的影响是否被考虑。

使用此视图,可以修改特定表的自动增量统计视图的状态和参数配置,以便更新自动增量统计视图的性能。

使用此视图的方法很简单:

1、确定要管理的表和模式。

2、使用SELECT命令从视图DBA_AUTO_MV_CONFIG查询出表或模式的信息,使用ALTER VIEW命令来更新表或模式的信息,最后使用EXECUTE IMMEDIATE命令来执行更新。

官方英文解释

DBA_AUTO_MV_CONFIG displays configuration parameters associated with automatic materialized views and automatic zone maps.

The configuration parameters displayed in this view can be updated with CONFIGURE procedure of the DBMS_AUTO_MV package.

Column Datatype NULL Description

PARAMETER_NAME

VARCHAR2(128)

NOT NULL

Name of the configuration parameter

PARAMETER_VALUE

VARCHAR2(4000)

Value of the configuration parameter

LAST_UPDATED

TIMESTAMP(6)

Date and time of the last parameter value update

UPDATED_BY

VARCHAR2(128)

User who last updated the parameter value

DESCRIPTION

VARCHAR2(72)

Description of the configuration parameter

Note:

This view is available starting with Oracle Database 21c.

See Also:

Oracle Database PL/SQL
Packages and Types Reference
for more information about the DBMS_AUTO_MV.CONFIGURE procedure


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