Login  Register

Concurent program security.

classic Classic list List threaded Threaded
3 messages Options Options
Embed post
Permalink
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Concurent program security.

shahzad53
13 posts
Dear Erman,

Need to ask one question , I have one custom Concurrent program and need to restrict this program that only one user are run that program once at a time, if  another user are trying to run same concurrent program, it has restricted and user not be able to run .

Please guide me how to do that.

Regards,
shahzad53
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Concurent program security.

shahzad53
13 posts
Dear Ermaan,

Please reply my query, waiting for your valuble support.

Regards,
shahzad
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Concurent program security.

ErmanArslansOracleBlog
Administrator
5731 posts
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.