vote up 3 vote down star

Hello,

I have a procedure and i would like that only one user could execute this procedure at same time.

How i can do it?

A lot of thanks!

Regards

Marc

flag

2 Answers

vote up 7 vote down

This is just off the top of my head: Consider using a named lock via dbms_lock. http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28419/d_lock.htm#CHDICHDC

Right after the begin statement get the lock, do the work, then release it on exit (Keep errors/exceptions in mind!).

KT

link|flag
I've used this method before, it works nicely - jeffkemponoracle.blogspot.com/2005/10/… – Jeffrey Kemp Jun 28 at 13:36
vote up -1 vote down

A simple solution can be to use lock at the table level, by using FOR UPDATE.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.