Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: SELECT for UPDATE in web application
I locked this row in another session. Looks like ora-00054 is your error to
trap for.
ORA-00054: resource busy and acquire with NOWAIT specified
SQL> declare
2 serr varchar2(512); 3 cursor c1 is select * from TMPWDVS007_USR_PRF for update ofDVS007_AUTOLOAD_F nowait;
"Biff Malone" <biffmalone_at_hotmail.com> wrote in message
news:f2efd06c.0302250638.13c27e3d_at_posting.google.com...
> If I've got a web application that is doing a SELECT FOR UPDATE for
> one user. When subsequent user comes tries to do a SELECT FOR UPDATE,
> my application just hangs until the lock is released. I've tried using
> the "NOWAIT" clause at the end of the statement, but that doesn't
> help. Is there a test I can do to figure out if there exists a lock
> on a record? Is an exception thrown when a lock exists and the
> application does a SELECT FOR UPDATE (preferably in a non-DB-specific
> way)?
Received on Tue Feb 25 2003 - 09:40:19 CST
![]() |
![]() |