DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: Dirty reads & Isolation Levels

  1. #1
    Join Date
    Jul 2000
    Posts
    11
    Hello,
    I am porting a DB/2 application (ISAM based access) towards Oracle SQL (poor me...)

    "The original application allows dirty reads : process A updates the database but does not yet commit the transaction. Process B can already retrieve the new information."

    I know it sounds silly that we want to emulate this, but we actually need this functionality.

    has anybody a suggestion ?

    Regards,
    Luc


  2. #2
    Join Date
    Nov 2000
    Location
    Baltimore, MD USA
    Posts
    1,339
    Sorry, but there is no easy way that I know of. Basically, it is not possible to do a dirty read in Oracle, under any of the isolation levels.

    Therefore, you would have to come up with some elaborate scheme to maybe update some temp tables, and have people read from those, but only update the real table when you are ready. I cannot even imagine the complexities that something like this would introduce. I would seriously reconsider the necessity of this particular functionality, or the necessity of switching to Oracle :), because the two don't mix.

    Sorry,

    - Chris

    Anyone else out there have any ideas?

  3. #3
    Join Date
    May 2000
    Location
    ATLANTA, GA, USA
    Posts
    3,135
    If DB2 allows 2nd process to read uncommitted data of the 1st process, better not to use DB2.

  4. #4
    Join Date
    Nov 2000
    Location
    Baltimore, MD USA
    Posts
    1,339
    Well, just as an aside, it *is* the definition of certain isolation levels that such functionatlity exist. The READ UNCOMMITTED isolation level, as defined in the ANSI SQL-92 standards allows such functionality. It is simply that Oracle does not support said functionality (same as it does not yet support the ANSI-92 join syntax, although that is slated for 9i, so I hear). SQLServer also supports this isolation level (at least in 6.5 it did :) ).

    - Chris

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width