文档解释
ORA-26924: cannot configure string using “string”.”string” queue because it is used by “string” for string purpose
Cause: An attempt was made to configure the specified process using a queue already used by another process for different purpose.
Action: Resubmit the statement using another queue of the same purpose.
。
ORA-26924错误表示不能使用“string”.”string”队列配置字符串,因为它被“string”用于string目的。
官方解释
常见案例
一般处理方法及步骤
1.如果一个队列已被其他会话使用,这就表示没有多余的任务可以完成了,所以解决该错误的最佳办法就是等待已存在任务完成,另一个会话结束,然后重试分配。
2.确保JDBC驱动程序或其它程序正确设置,以避免有多个会话使用同一队列。
3.在使用相同队列的情况下完成当前任务,然后关闭连接。