Viewing 2 posts - 1 through 2 (of 2 total)
Grant Fritchey (7/22/2010)
July 22, 2010 at 8:20 pm
#1197305
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.
July 22, 2010 at 3:47 am
#1196713