message not propagated
I have created oracle queues on two database, surprisingly enqueued messaged not propagated to another database, they just stay on database with status READY. I have checked my db links works fine and no any error reported on propagation scheduled. below are scripts I used to create the environment cbs Queues --------------------------------------------------------------------------- create user cbs_strmadm identified by cbs_strmadm account unlock; GRANT DBA TO cbs_strmadm; BEGIN DBMS_STREAMS_AUTH.GRANT_ADMIN_PRIVILEGE( grantee => 'cbs_strmadm'); END; / conn cbs_strmadm/cbs_strmadm CREATE TYPE cbs_strmadm.cbstype AS OBJECT( sender_id varchar2(15), data clob, consumer varchar2(15) ); / BEGIN DBMS_AQADM.CREATE_QUEUE_TABLE ( queue_table => 'cbs_strmadm.out_msg', queue_payload_type => 'cbs_strmadm.cbstype', multiple_consumers => TRUE ); DBMS_AQADM.CREATE_QUEUE_TABLE