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

本站中文解释

Oracle的V$PARAMETER_VALID_VALUES视图显示所有接受的参数名称和有效值,以及当前实例或会话的当前设置。

使用此视图,可以探索并了解所有可用的参数的有效值,用作调整实例或会话的参数值,以满足特定的需求。同时,用户可以检查当前实例或会话的参数设置,并确保当前值在可接受范围内。

官方英文解释

V$PARAMETER_VALID_VALUES displays a list of valid values for list parameters.

Column Datatype Description

NUM

NUMBER

Parameter number

NAME

VARCHAR2(64)

Parameter name

ORDINAL

NUMBER

Ordinal number in the list (1-based)

VALUE

VARCHAR2(255)

Parameter value at ordinal

ISDEFAULT

VARCHAR2(64)

Indicates whether the given ordinal value is the default value for the parameter

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$PARAMETER_VALID_VALUES 官方解释,作用,如何使用详细说明