ORA-24202: publisher does not exist for the queue
Cause: Attempted to alter or drop a non existent publisher from a queue.
Action: Specify another publisher.
:
ORA-24202是由Oracle数据库抛出的一般性错误,指明对消息队列操作时,消息队列被调用时没有找到发布者服务。
The ORA-24202 error message is thrown when an Oracle Database tries to perform a message queuing operation, and there is no publisher service found when the message queue was invoked.
ORA-24202错误信息的最常见的案例是当发布者服务被取消注册时,而在程序中仍尝试调用该服务时,抛出这个错误信息。
1.使用DBMS_AQADM.CREATE_QUEUE_TABLE()创建队列表。
2.使用DBMS_AQADM.CREATE_QUEUE()检查此表中的每个队列。
3.使用DBMS_AQADM.START_QUEUE()启动此表中的每个队列。
4.使用DBMS_AQADM.REGISTER_PUBLISHER()在队列上注册一个发布者处理程序。
5.使用DBMS_AQADM.START_QUEUE()启动此表中的每个队列
6.使用DBMS_AQADM.STOP_QUEUE()停止此表中的每个队列。