If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > isolation level and optimistic locking

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-15-05, 03:54
Wim Wim is offline
Registered User
 
Join Date: Nov 2004
Posts: 1,279
isolation level and optimistic locking

I read about the different isolation levels (Repeatable Read, Read Stability, Cursor Stability and Uncommitted Read). But it's still unclear when i should use a certain isolation level.

We use optimistic locking to prevent concurrency problems. If this would be the golden bullet solution, there would be no need for these isolation levels. What am I missing ?
__________________
With kind regards . . . . . SQL Server 2000/2005/2008/2008 R2 Earned beers: 16
Wim
Beware of bugs in the above code; I have only proved it correct, not tried it. -- Donald Knuth
Grabel's Law: 2 is not equal to 3 -- not even for very large values of 2.
Pat Phelan's Law: 2 very definitely CAN equal 3 -- in at least two programming languages
Reply With Quote
  #2 (permalink)  
Old 12-15-05, 20:25
Marcus_A Marcus_A is offline
Registered User
 
Join Date: May 2003
Location: USA
Posts: 5,196
The isolation level determines how long a read lock is held, except for a few exceptions. One exception is UR, which means no locks are held, and existing locks are ignored by the SQL select run with UR.

Update locks are held until a commit takes place, regardless of isolation level.

For maximum concurency of most applications, use CS. This will release the row lock on a read when the cursor moves off the row and DB2 moves to the next row (if using cursor processing).

If you need the result set to remain consistant while the select statement is processing the rows in your query, you may need RS, which holds the read locks until the SQL select statement is finished.

If you need to read the same data more than once in a unit of work and it must be the same each time, then use RR, which hold the read locks until a commit.
__________________
M. A. Feldman
IBM Certified DBA on DB2 for Linux, UNIX, and Windows
IBM Certified DBA on DB2 for z/OS and OS/390
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On