Oracle 视图 ALL_APPLY_EXECUTE 官方解释,作用,如何使用详细说明
本站中文解释
表
ALL_APPLY_EXECUTE表是一张视图,它存储有关复制存储器(RS)中所有活动应用程序(APPLY)立即执行的信息。它针对每个应用程序和复制存储器提供了一些详细信息,例如状态、启动时间、上次心跳时间等等。
可以使用此视图来检查RS中每个应用程序的状态,监控其他应用程序多久没有响应,以及确保所有应用程序都是正常工作的。可以使用以下查询来选择RMAN复制存储器中所有应用程序的状态信息:
SELECT *
FROM ALL_APPLY_EXECUTE
WHERE REPLICATION_NAME=’rman’;
官方英文解释
ALL_APPLY_EXECUTE
displays information about the apply execute actions for the rules visible to the current user.
Related View
DBA_APPLY_EXECUTE
displays information about the apply execute actions for all rules in the database.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the rule |
|
|
|
Name of the rule |
|
|
Indicates whether the event satisfying the rule is executed |
See Also:
“DBA_APPLY_EXECUTE”