is there some way to tell sql server to use the (nolock) hint or every select in a stored procedure?
is pretty tiresome to add it to each an every select….
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
found this….
How to force nolock hint for sql server logins
seems like the best way to achieve this is to issue a
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
any other idea???
ps
another related question…
NOLOCK vs. Transaction Isolation Level