返回顶部
首页 > 资讯 > 错误编码 >ORA-24042: no propagation schedule exists for QUEUE string and DESTINATION string ORACLE 报错 故障修复 远程处
  • 231
分享到

ORA-24042: no propagation schedule exists for QUEUE string and DESTINATION string ORACLE 报错 故障修复 远程处

报错故障propagation 2023-11-05 05:11:40 231人浏览 薄情痞子
摘要

文档解释 ORA-24042: no propagation schedule exists for QUEUE string and DESTINATION string Cause: AN UNSCHEDULE_PROPAGATION

文档解释

ORA-24042: no propagation schedule exists for QUEUE string and DESTINATION string

Cause: AN UNSCHEDULE_PROPAGATION was issued for a queue and destination pair which has no existing propagation schedule.

Action: Verify the spelling of the specified QUEUE and DESTINATION and then reissue the call with the correct spelling.

ORA-24042表明,在指定队列和目标之间没有启动消息传播的调度实例。

官方解释

ORA-24042: no propagation schedule exists for QUEUE string and DESTINATION string

Cause: Attempt to start propagation on a queue and destination pair which has no propagation schedule.

Action: Create the propagation schedule, or infORM the user that this has not been done.

常见案例

在使用 oracle Messages队列时,为了完成消息传播,在源队列和目标队列之间需要建立propagation调度实例。

正常处理方法及步骤

一般处理方法及步骤

1)登陆数据库,激活DBMS_AQADM包:

sql>exec dbms_aqadm.admin_activate_db_queue();

2)用以下语句创建propagation调度实例:

exec DBMS_AQADM.CREATE_SCHEDULE( queue_name=>’SOURCE QUEUE NAME’, destination_name=> ‘DESTINATION QUEUE NAME’, schedule_name=> ‘SCHEDULE NAME’, start_date=>SYSDATE,repeat_interval => ‘SYSDATE+1/24’);

3)用以下语句启动消息传播:

exec dbms_aqadm.start_propagation(SCHEDULE => ‘SCHEDULE NAME’, DESTINATIONS => ‘DESTINATION QUEUE NAME’);

4)再次运行以下语句以及检查调度实例是否处于启动状态:

exec dbms_aqadm.start_propagation(SCHEDULE => ‘SCHEDULE NAME’, DESTINATIONS => ‘DESTINATION QUEUE NAME’);

SELECT * FROM DBA_QUEUES_PROPAGATION_SCHEDULES;

这样,ORA-24042错误就会被解决,消息队列中的消息也可以顺利传送到目的队列了。

--结束END--

本文标题: ORA-24042: no propagation schedule exists for QUEUE string and DESTINATION string ORACLE 报错 故障修复 远程处

本文链接: https://lsjlt.com/news/534294.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作