Posted by laurenq uantrell on 09/18/05 18:28
So which should result in a faster scan of the table with fewer
possibilty of locking in a situation where:
I have a table dbo.myTableName to which hundreds of users are
UPDATE-ing or INSERT-ing 24/7. They are also running SELECT queries
against that table 24/7.
I am tring to remove the slowdown caused by rows that might be being
written to when users run a query that looks like: SELECT myID, myRow1
FROM dbo.myTableName WITH (READPAST) <OR> WITH (NOLOCK) WHERE StartDate
= @DateParam
?
[Back to original message]
|