Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Dirty Reads

    Grant Fritchey (7/22/2010)


    Something along these lines. You have a table with a column, CityName. One row has a value 'Hyderabad.' But that's a bad value. So someone is running a...

  • RE: Dirty Reads

    2 ways:

    /* 1st */

    SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED

    SELECT * FROM MyTable

    /* 2nd */

    SELECT * FROM MyTable WITH (NOLOCK)

    I hope this is what you're looking for.

Viewing 2 posts - 1 through 2 (of 2 total)