I have seen sql statements using nolock and with(nolock) e.g -
select * from table1 nolock where column1 > 10
AND
select * from table1 with(nolock) where column1 > 10
Which of the above statements is correct and why?
|
I have seen sql statements using nolock and with(nolock) e.g -
AND
Which of the above statements is correct and why? | ||||
|
feedback
|
|
The first statement doesn't lock anything, whereas the second one does. When I tested this out just now on SQL Server 2005, in
"nolock" became the alias, within that query, of table1.
performs the desired nolock functionality. Skeptical? In a separate window, run
to lock the table, and then try each locking statement in its own window. The first will hang, waiting for the lock to be released, and the second will run immediately (and show the "dirty data"). Don't forget to issue
when you're done. | |||
feedback
|
|
The list of deprecated features is at Deprecated Database Engine Features in SQL Server 2008:
They are all in the list of features that will be removed sometimes after the next release of SQL, meaning they'll likely be supported in the enxt release only under a lower database compatibility level. That being said my 2c on the issue are as such:
Then remove ALL hints from the selects. | |||||||
feedback
|
|
They are both technically correct, however not using the WITH keyword has been deprecated as of SQL 2005, so get used to using the WITH keyword - short answer, use the WITH keyword. | |||||||||||||
feedback
|