↧
Answer by wBob for Is there anyway to make this stored procedure thread safe?
I know raising the transaction isolation level and adding a transaction can seem counter-intuitive, but sometimes, you have to make things queue up and wait their turn. Doing those two things worked...
View ArticleIs there anyway to make this stored procedure thread safe?
I have a stored procedure that deletes X rows. This procedure is called by a Job Scheduler (Not SQL Server Agent) from one of three Azure Instances. The deletion task is run every 30 minutes from each...
View Article