|
Hi Erman!
Thxs for answer :)
I did not like that note, as it needs to bounce the db and recreating all queue is bit too much.
This one worked as well.
STopped WF, made sure no READY events that are neededed, purged, started.
declare
po dbms_aqadm.aq$_purge_options_t;
begin
po.block := true;
dbms_aqadm.purge_queue_table(queue_table => 'APPLSYS.WF_DEFERRED',
purge_condition => NULL,
purge_options => po);
end;
/
Best wishes, Laurel
|