Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Locking a table row for one user
Message
 
 
To
28/08/2015 05:13:03
Rob Clapworthy
Bespoke Software Systems
United Kingdom
General information
Forum:
Microsoft SQL Server
Category:
Other
Environment versions
SQL Server:
SQL Server 2014
Application:
Web
Miscellaneous
Thread ID:
01623931
Message ID:
01623953
Views:
65
It seems like perfect use for Sequence

Another option would be to use OUTPUT clause of UPDATE statement

The third otion would be to use UPDATE wit a local variable. The code has been posted a few tomes in thee past

>
>I am trying to lock a table row in a table that manages field no sequences
>
>Here's my code:
>
>
BEGIN TRAN
>
>SELECT * FROM NEXTID WITH (HOLDLOCK, ROWLOCK) WHERE Cdbfname = 'JOBNO'
>
>mjobno=sqlResults.iNextNo
>
>UPDATE NEXTID SET iNextNo=InextNo+1 FROM NEXTID WITH (HOLDLOCK, ROWLOCK) WHERE Cdbfname = 'JOBNO'
>
>/* Do all your stuff here while the record is locked */
>
>COMMIT TRAN
>
>
>Basically I want one user to go through this code at a time, I thought the begin tran would
>do what I want?
>
>EDIT: I have selected Internet application in the desc, but it is should say desktop application :)
>
>Any help extremely appreciated
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform