Question

If I have an AQ set up, but my listener (Mule JMS endpoint) is not receiving any messages. Is there a view that I can query to determine what listeners Oracle thinks are connected to the queue?).

Was it helpful?

Solution

From http://wedostreams.blogspot.ca/2009/01/oracle-aq-buffered-queues-101.html:

You can check queue subscribers by querying the AQ$MYQUEUE_TABLE_S view (or AQ$_MYQUEUE_TABLE_S table) like below:

col name    format a12
col address format a40

select name, address
from aq$myqueue_table_s
where queue='MYQUEUE';

NAME      ADDRESS
------------ -------------------------
SUBSCRIBER1
SUBSCRIBER2
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top