Database Administration (MOSC)

MOSC Banner

message not propagated

edited Nov 12, 2015 10:03AM in Database Administration (MOSC) 2 commentsAnswered

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

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center