Home Forums SQL Server 2005 T-SQL (SS2K5) Reg: SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED RE: Reg: SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED

  • kevin_nikolai (8/2/2013)


    SELECT

    firstname

    ,salary

    FROM dbo.employee e WITH (nolock)

    JOIN salary s WITH (nolock)

    ON s.employeeid = s.employeeid;

    And when your colleagues get short paid because you thought it essential to put NOLOCK onto a "report" query?

    The SQL Guy @ blogspot[/url]

    @SeanPearceSQL

    About Me[/url]