Tagged Questions

27
votes
6answers
14k views

Is the NOLOCK (Sql Server hint) bad practice?

I'm in the business of making website and applicatins that are not mission critical -> eg. banking software, space flight, intensive care monitoring application, etc. You get the idea. So, with that ...
2
votes
2answers
105 views

High Traffic SQL Table intermittent Null Output Parameter

I'm getting an intermittent null value for an output parameter for a stored procedure I have. I'm wondering if it has to do with the NOLOCK inside the stored procedure. It works most of the time, ...
1
vote
2answers
1k views

TSQL NOLOCK VIEW and Store procedure

In our company we tend to use views and store procedures. We've recently started to implement the NOLOCK statement to a lot of our views. I was wondering that , if I am applying NOLOCK to a view, it ...
1
vote
2answers
207 views

Will SQL Server NOLOCK hint return partially written rows?

First of all I'm not asking if NOLOCK should or should not be used. Let's get past that. I guess the question comes down to how sql server writes data? Is an entire row written at once or does it ...