Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Recreate the subscriber for queue WF_BPEL_Q in 12.1.3

2772429May 22 2015 — edited May 24 2015

As per METALINK doc LAD Addon Localizations R12 Integration Solution (Doc ID 960846.1)

SQL> DECLARE

  2  lagent SYS.aq$_agent;

  3  subscriber_exist EXCEPTION;

  4  PRAGMA EXCEPTION_INIT (subscriber_exist, 24034)

  5  ;

  6  BEGIN

  7  lagent := SYS.aq$_agent ('WF_BPEL_Q', NULL, 0);

  8  DBMS_AQADM.add_subscriber (queue_name => 'APPS.WF_BPEL_Q',

  9  subscriber => lagent,

rule => '1=1');

EXCEPTION

10   11  WHEN subscriber_exist THEN

12   13  just

14  add the rule if subscriber exists

15  DBMS_

16  AQADM.alter_subscriber (queue_name => 'APPS.WF_BPEL_Q',

17  subscriber => lagent,

18  rule => '1=1');

19  END;

20  /

lagent SYS.aq$_agent;

                     *

ERROR at line 2:

ORA-06550: line 2, column 22:

PLS-00103: Encountered the symbol ";" when expecting one of the following:

:= . ( @ % ; not null range default character

Please suggest

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jun 19 2015
Added on May 22 2015
1 comment
865 views