Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Determining if a table/row is locked in a database

Re: Determining if a table/row is locked in a database

From: victor <victor_at_PERCOMBANK.KIEV.UA>
Date: 10 Nov 1998 12:24:05 GMT
Message-ID: <01be0ca4$f07fa6a0$6b14abcc@victor>


try to use this

begin
 lock table z in exclusive mode nowait;

except when others then

and this

cursoc c1 is select * from table where id=id# for update nowait begin

c1.open;
c1.close;

except when others then

Received on Tue Nov 10 1998 - 06:24:05 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US