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

本站中文解释

Oracle 视图 DBA_HIST_PARAMETER 提供了查询系统参数的细粒度变化记录。

该视图显示更改了系统参数的相关信息,包括修改参数值的日期、用户和原因。它还能显示哪些参数从哪个节点被修改,以及实例是否正在使用更新后的参数值。

可以使用 DBA_HIST_PARAMETER 视图来查看过去改变系统参数的信息。例如,你可以使用该视图来查找 INIT.ORA 中共享池的初始化参数的修改记录。此外,也可以查看是那个参数用户被更改,而且何时被更改,以及更改的原因。

另外,还可以使用该视图来查看 DB_AW_CACHE_SIZE 参数的变化,这可以帮助确定在数据挖掘过程中是否有频繁的内存分配。

还可以使用 DBA_HIST_PARAMETER 视图来监视系统参数是否符合审核要求。另外,该视图还可以用于确定当前以及修改过的系统参数值。

官方英文解释

DBA_HIST_PARAMETER displays historical information about the initialization parameters that were in effect for the instance.

This view contains snapshots of V$SYSTEM_PARAMETER.

Column Datatype NULL Description

SNAP_ID

NUMBER

NOT NULL

Unique snapshot ID

DBID

NUMBER

NOT NULL

Database ID for the snapshot

INSTANCE_NUMBER

NUMBER

NOT NULL

Instance number for the snapshot

PARAMETER_HASH

NUMBER

NOT NULL

Parameter hash

PARAMETER_NAME

VARCHAR2(64)

NOT NULL

Name of the parameter

VALUE

VARCHAR2(512)

Parameter value for the session (if modified within the session); otherwise, the instance-wide parameter value

ISDEFAULT

VARCHAR2(9)

Indicates whether the parameter is set to the default value (TRUE) or the parameter value was specified in the parameter file (FALSE)

ISMODIFIED

VARCHAR2(10)

Indicates whether the parameter has been modified after instance startup:

  • MODIFIED – Parameter has been modified with ALTER SESSION

  • SYSTEM_MOD – Parameter has been modified with ALTER SYSTEM (which causes all the currently logged in sessions’ values to be modified)

  • FALSE – Parameter has not been modified after instance startup

CON_DBID

NUMBER

The database ID of the PDB for the sampled session

CON_ID

NUMBER

The ID of the container that CON_DBID identifies. 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

See Also:

“V$SYSTEM_PARAMETER”


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