Oracle 视图 ALL_APPLY_CHANGE_HANDLERS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_APPLY_CHANGE_HANDLERS视图是Oracle数据库中一个系统视图,它提供了有关所有可用的采用更改句柄的信息。它的用法就是查询的时候可以使用它,它提供的信息可以用于创建,更新或删除句柄,从而控制应用采用更改的行为。
主要字段如下:
OWNER:更改句柄所有者的名称
HANDLER_TYPE:更改句柄类型
HANDLER:更改句柄名称
HANDLER_NAME:更改句柄所使用的字符串
USAGE:此句柄的最新用法
CREATED:更改句柄的创建日期
LAST_DDL_TIME:最后一次改变句柄的日期
官方英文解释
ALL_APPLY_CHANGE_HANDLERS
displays information about the change handlers on the tables accessible to the current user.
Related View
DBA_APPLY_CHANGE_HANDLERS
displays information about the change handlers on all tables in the database.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Owner of the change table |
|
|
|
Name of the change table |
|
|
|
Owner of the source table |
|
|
|
Name of the source table |
|
|
|
Name of the statement-based change handler |
|
|
|
Indicates whether to capture the old ( |
|
|
|
Name of the apply process |
|
|
|
Name of the DML operation to which the DML handler is set:
|
|
|
|
Change handler creation time |
|
|
|
Change handler modification time |
See Also:
“DBA_APPLY_CHANGE_HANDLERS”