how to implement locking in sql server
Answers were Sorted based on User's Feedback
Answer / suraj
like this
select *
from dbo.Address
with (nolock)
-- above query doesn't hold lock while retrieving data.
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / rama krishna
no need to impliment locks sql server automatically holds
locks
Is This Answer Correct ? | 5 Yes | 8 No |
What are the different ways you can create databases in sql server?
What does <> symbol mean?
write query for fourth maximum salary from employee table
14 Answers Mind Tree, SP Software,
How to Get the last identity value used
Is trigger fired implicitely?
Is it possible to replicate data from sql server to oracle? : sql server replication
What is the difference between executequery () and executeupdate ()?
What is autocommit mode in sql server?
Can you explain different types of locks in sql server?
How to test subquery results with the exists operator?
Describe triggers features and limitations?
Give main differences between "Truncate" and "Delete".