Everything is based on the assumption that with(nolock) is entirely appropriate for the situtation. There are already plenty of questions out there debating whether or not to use (nolock).
I been looking around and haven't been able to find if there is a actually difference between using with(nolock):
select customer, zipcode from customers c with(nolock)
or just (nolock):
select customer, zipcode from customers c (nolock)
Is there a functional difference between the two? Stylistic?
Is one older than the other and has a chance of being deprecated?
Curiosity got the best of me on this one.
Thanks all
FROM t WITH (TABLOCK, INDEX(myindex))msdn.microsoft.com/en-us/library/ms187373.aspx – edze Aug 24 '12 at 16:08