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

本站中文解释

视图

V$OBSOLETE_PARAMETER视图是Oracle数据库视图,它用来显示已被取消的参数值。V$OBSOLETE_PARAMETER视图显示所有当前已经删除的参数,以及目前可用的替代参数名称。它有助于更新已删除参数以提高性能。

V$OBSOLETE_PARAMETER视图的使用方法如下:

1. 使用SQL*Plus登录系统,运行以下查询语句:SELECT * FROM V$OBSOLETE_PARAMETER。

2. 该查询可以显示出所有已删除的参数和相应的替代参数名称。

3. 根据查询的结果,可以编辑SQL脚本来修改参数。

4. 最后,可以使用ALTER SYSTEM命令将参数修改应用到数据库实例中。

官方英文解释

V$OBSOLETE_PARAMETER displays information about obsolete initialization parameters. If any row of the view contains TRUE in the ISSPECIFIED column, then you should examine why.
Column Datatype Description

NAME

VARCHAR2(64)

Name of the parameter

ISSPECIFIED

VARCHAR2(5)

Indicates whether the parameter was specified in the parameter file (TRUE) or not (FALSE)

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


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