Oracle 视图 ALL_APPLY_REPERROR_HANDLERS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_APPLY_REPERROR_HANDLERS视图用于查看当前用户的所有Streams Apply进程的错误处理过程。ALL_APPLY_REPERROR_HANDLERS视图具有如下内容:
APPLY_NAME:应用程序进程的名称。
APPLY_HANDLER_FUNC:处理错误的函数。
APPLY_HANDLER_PARAMS:传递给函数的参数。
使用ALL_APPLY_REPERROR_HANDLERS视图,可以查询当前用户的所有Streams Apply进程的错误处理过程:
SELECT apply_name, apply_handler_func, apply_handler_params
FROM all_apply_reperror_handlers;
官方英文解释
ALL_APPLY_REPERROR_HANDLERS
provides details about apply reperror handlers on objects visible to the user.
Related View
DBA_APPLY_REPERROR_HANDLERS
provides details about apply reperror handlers.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Name of the apply process |
|
|
|
Owner of the object |
|
|
|
Name of the object |
|
|
|
Source database owner of the source object |
|
|
|
Source database name of the object |
|
|
|
Error number for the handler |
|
|
Error handling method:
|
|
|
|
Maximum number of times to retry for the method |
|
|
|
Number of centiseconds to wait between retries for |
|
|
|
Entity that set up the handler:
|
See Also:
“DBA_APPLY_REPERROR_HANDLERS”