2 comments

  1. If I'm right you can also do this by adding a 'query hint': WITH (READ UNCOMMITTED)

    PatrickG

  2. Using a ‘Query hint’ has about the same effect. The main diffrence is that you have to specify the hint in every query, while setting the isolation level changes the setting for all subsequent queries on the current connection.

    frankb

Comments are closed.