Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
ramdas
Posting Yak Master
181 Posts |
Posted - 2003-05-30 : 15:42:48
|
| Hi,What is the purpose of using a NOLOCK hint in a SELECT Statement. Is it a good paractice to use this hint.BOL says it does not honor EXCLUSIVE LOCKS, any insights?RamdasRamdas NarayananSQL Server DBA |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2003-05-30 : 15:47:22
|
| We use NOLOCK hint when we run SELECT statements in production (ad-hoc basis). It is definitely a good practice to use the NOLOCK hint in production to get counts of tables so that you don't affect production. It just gives you a dirty read.Tara |
 |
|
|
ramdas
Posting Yak Master
181 Posts |
Posted - 2003-05-30 : 15:51:00
|
| Thank youRamdasRamdas NarayananSQL Server DBA |
 |
|
|
|
|
|