IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Different isolation level for each query


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
RamsIBM

New User


Joined: 08 Jan 2007
Posts: 53
Location: Chennai

PostPosted: Thu Mar 13, 2008 1:20 pm
Reply with quote

A program having ten SQL query, how shall I give different isolation level for each query?
Back to top
View user's profile Send private message
stodolas

Active Member


Joined: 13 Jun 2007
Posts: 632
Location: Wisconsin

PostPosted: Thu Mar 13, 2008 5:33 pm
Reply with quote

Add WITH ## to the end of the query. Check the manual for syntax and details on this.
Back to top
View user's profile Send private message
Gnanas N

Active Member


Joined: 06 Sep 2007
Posts: 792
Location: Chennai, India

PostPosted: Thu Mar 13, 2008 6:53 pm
Reply with quote

This information is from Jim Wankowski's white paper on Isolation Levels and Data Consistency.

Starting with version 8.1, DB2 provides the ability to specify the isolation level for a particular query with the WITH [RR | RS | CS | UR] clause, which can be appended to a SELECT statement.

See this also,

Although isolation levels control behavior at the tansaction level, they're actually set at the application level. Therefore, in most cases, the isolation level specified for a particular application is applicable to every tansaction that's initiated by that application.

For embedded SQL statements, the isolation level is specified at precompile time or when the application is bound to database(if deferred binding is used) via the ISOLATION option of the PRECOMPILE or BIND command.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts How to load to DB2 with column level ... DB2 6
No new posts RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
Search our Forums:

Back to Top