文档解释
ORA-26821: No propagation process found between source queue “string”.”string” and destination queue “string”.”string”.
Cause: Propagation has not been configured.
Action: Configure a propagation between specified queues and restart capture.
官方解释
常见案例
一般处理方法及步骤
1.确认数据库表中是否有指定的传播结构。使用下面的SQL查询数据库表:
select * from dba_queue_propagations where source_queue= and dest_queue=;
2.如果没有发现这个结构,尝试使用DBMS_AQADM.ADD_PROPAGATION函数将它添加到数据库表中。
3.确认传播的权限问题。使用下面的SQL查询:
select * from sys.dba_aqadm_grant_propagation where source_queue = and dest_queue = ;
4.如果没有发现权限设置,使用DBMS_AQADM.GRANT_PROPAGATION_QUEUE函数添加权限。
5.重新尝试使用DBMS_AQADM.REMOVE_PROPAGATION函数移除传播。