Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
Hello experts! :)
I want to apply Transaction set in below sql queries
--start tran.
    query1...
    query2...
    query3...
--end tran.

now, I want that if this query set is in process(being executed) by some one, then others should be wait in queue till one complete task

so, which transaction level/lock should I apply on above query sets
Thanks & regards :)
Posted
Comments
skydger 8-Apr-13 8:35am    
It depends on what kind of queries do you use.
If these queries are a number of 'insert' statements, you could use 'with tablock' hint. But if you have miscellaneous queries, then you could use
'set transaction isolation level read commited', with 'READ_COMMITTED_SNAPSHOT' option set to off.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900