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

本站中文解释

Oracle视图DBA_HIST_WR_CONTROL是在服务器上实现内存及存储器跟踪功能(MMON)的一种可视化功能。它显示当前主机上已启用了内存和存储器跟踪器(MTG)的信息。它显示了在MMON启动期间启用MTG时系统参数的值。

它主要包括如下几个字段:

•MTG_NAME:监测的内存或存储器跟踪器的名称。

•STATUS:指示哪个跟踪器正在运行或者已停止。

•START_TIME:跟踪器启动时间。

•END_TIME:跟踪器停止时间,如果跟踪器仍然在运行,则此字段为空。

•TRACE_LEVEL:用于跟踪会话执行的程度。

•OBJECT_LEVEL:用于跟踪系统中的对象的程度。

•SERVER_INFO:系统的基本信息,例如服务器的位置和版本。

要使用此视图,可以使用以下查询:

SELECT * FROM dba_hist_wr_control;
该查询将为我们显示所有可用的内存和存储器跟踪器的状态信息。

官方英文解释

DBA_HIST_WR_CONTROL displays the control information for the Workload Repository.

Column Datatype NULL Description

DBID

NUMBER

NOT NULL

Database ID

SNAP_INTERVAL

INTERVAL DAY(5) TO SECOND(1)

NOT NULL

Snapshot interval; how often to automatically take snapshots

RETENTION

INTERVAL DAY(5) TO SECOND(1)

NOT NULL

Retention setting for the snapshots; amount of time to keep the snapshots

TOPNSQL

VARCHAR2(10)

The number of Top SQL flushed for each SQL criteria (elapsed time, CPU time, parse calls, sharable memory, version count)

CON_ID

NUMBER

The ID of the container to which the data pertains. Possible values include:

  • 0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.

  • 1: This value is used for rows containing data that pertain to only the root

  • n: Where n is the applicable container ID for the rows containing data

SRC_DBID

NUMBER

Database ID of the non-CDB, CDB, or PDB where the AWR snapshot data was collected

SRC_DBNAME

VARCHAR2(128)

 

Database name of the non-CDB, CDB, or PDB where the AWR snapshot data was collected

TABLESPACE_NAME

VARCHAR2(128)

 

Name of the tablespace in which AWR snapshot data resides


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