Login  Register

Re: Concurent program security.

Posted by ErmanArslansOracleBlog on Jan 27, 2020; 6:06am
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/Concurent-program-security-tp8022p8036.html

Hi Shahzad,

Define a specialized concurrent manager (with a single process) to run only that specific concurrent program. I suppose that that specific concurrent program of yours doesn't spawn any other concurrent program while during its run.

MOS Note 250755.1 -> How to Create and Custom Concurrent Manager.

This way, your specialized concurrent program can only run once at a time. Any other requesst for running it (while it is already running), will be queued in your newly defined specialized manager's queue.

This seems to be the easiest way to achieve what you are asking for.