I am writing a stored procedure that will use by application that function is booking. And it can happen concurrent booking. To handle that, which approach will be suitable?
I am trying to use isolation level "READ COMMITTED" & "UPDLOCK" hint to handle that. Can it be workable? Any comment and solution will be appreciate.
Another question is: if I use that isolation level and hint, can it be shared lock? If so, how can I handle it?
Best Regards, Reds