4
votes
Insert Update stored proc on SQL Server
You not only need to run it in transaction, it also needs high isolation level. I fact default isolation level is Read Commited and this code need Serializable.
SET transaction iso …
