Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

execute independent plsql procedure

Status
Not open for further replies.

taixut

Programmer
Oct 27, 2003
39
ES
Hi all,

I want to be able to call a packaged procedure from another package. I want the called procedure to have an independent session, i.e., it has it's own commit processing,
completely independent of the calling program so the calling program does not wait it to finish.

Thanks on advance.
 
Ther's no prebuilt way to call some procedure asynchronously. You may use AUTONOMOUS TRANSACTION, but though the transaction will be separate, your calling session will still wait for its ending. You may use Oracle pipes or queues to pass parameters to some procedure which may be invoked by Oracle job or just from another session.

Regards, Dima
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top