Re: asynchronous PL/SQL development; DBMS_AQ ??

  • From: Cosmin Ioan <cosmini@xxxxxxxxxxxxxxx>
  • To: oracle-l@xxxxxxxxxxxxx
  • Date: Fri, 27 Apr 2007 12:39:13 -0700 (PDT)

hi Alberto,  thx much for the reply -- 
   
  what I'm actually looking for is an extremely fast/responsive AQ mechanism 
for a scenario where we have a big module that could be (written) in a modular 
fashion. This module contains many snippets of code that could be written 
asynchronously, but at the end, I need to retrieve data, bits and pieces, from 
each sub-procedure.
   
  This **entire** main procedure may take 1-3 seconds, but in a large OLTP 
fast-transact environment, squeezing/parallelizing any operations that could be 
deemed asynchronous could be a life-saver.
   
  don't think that dbms_job is fast enough to account for milli or 
microseconds.... pooling every second or so, is definitely something we can't 
entertain....
   
  Any thoughts?
  thx,
  Cos

Alberto Dell'Era <alberto.dellera@xxxxxxxxx> wrote:
  If I have understood what you want - I usually use dbms_job
for this, in a nutshell

create table remaining (counter int);
insert into remaining (counter) values (2);
dbms_job.submit ( ... proc_1 );
dbms_job.submit ( ... proc_2 );
commit;

each proc will decrement counter upon completion (ok/ko).

Then in the "main thread" (the session that fired the jobs)
i simply poll, say every second, table "remaining" until counter is zero.

You can get as sophisticated as you want from here (logging
proc errors in the table as well is quite useful for example).

I think that examples of this technique can be found on asktom,
I can search there for you if you want.

hth
alberto

On 4/27/07, Cosmin Ioan wrote:
> hi all,
> what's the best & most robust package these days, whether Oracle supplied
> (DBMS_AQ?) or third party, to do asynchronous PL/SQL development (9i or
> 10g). I have various scenarios, multiple procedures that I'd like to fire
> at once and upon their validated completion to do some further computations.
>
> thx much,
> Cos
>
>
>


-- 
Alberto Dell'Era
"dulce bellum inexpertis"

Other related posts: