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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Hmmmmm

RE: Hmmmmm

From: Grabowy, Chris <cgrabowy_at_fcg.com>
Date: Fri, 25 Jan 2002 08:04:33 -0800
Message-ID: <F001.003FB340.20020125080032@fatcity.com>

Interesting. Are you sure?

I have actually started reading Tom Kyte's book, Expert One-on-One, and he mentions this problem and the solution(specifically, page 32). Basically, you code..

SELECT * FROM table WHERE field = something FOR UPDATE NOWAIT;

UPDATE table set field = blah WHERE field = something;

this allows user A to lock and update a specific record, and prevents others from updating that record. Please note, I specified "...FOR UPDATE NOWAIT" because if user B tries to update the record at the same time, then a lock error is returned which can then be coded for. If you use "...FOR UPDATE" then user B simply sits there and waits to update, which is dangerous since the record was changed for a reason, and will be updated again. Bad.

I know of one project that I support that is using this standard method successfully.

HTH!! Chris
"May Oracle be with you...always"

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Fri Jan 25 2002 - 10:04:33 CST

Original text of this message

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