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

本站中文解释

View

ALL_APPLY_PARAMETERS视图是Oracle数据库中的一个系统视图,它提供了每个外部表示表之间apply参数的信息。它把外部表示(ET)及其指定之apply参数列表显示为一个结构化的信息表。该视图结构比较简单。

ALL_APPLY_PARAMETERS的使用是为了提供apply参数的相关信息,如果用户需要查找应用外部表示形式的参数信息,就可以使用该视图。

使用ALL_APPLY_PARAMETERS的格式如下:
SELECT * FROM all_apply_parameters WHERE et_name = ”;

使用该检索语句,可以获得指定外部表示形式的参数信息,如果不指定任何外部表示,那么就检索出所有存在的外部表示形式及其使用的参数信息。

官方英文解释

ALL_APPLY_PARAMETERS displays information about the parameters for the apply processes that dequeue events from queues accessible to the current user.

Related View

DBA_APPLY_PARAMETERS displays information about the parameters for all apply processes in the database.

Column Datatype NULL Description

APPLY_NAME

VARCHAR2(128)

NOT NULL

Name of the apply process

PARAMETER

VARCHAR2(128)

NOT NULL

Name of the parameter

VALUE

VARCHAR2(4000)

Parameter value

SET_BY_USER

VARCHAR2(3)

Indicates whether the parameter value was set by the user (YES) or was not set by the user (NO). If NO for a parameter, then the parameter is set to its default value. If YES for a parameter, then the parameter may or may not be set to its default value.

See Also:

“DBA_APPLY_PARAMETERS”


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