I am building a VoIP switch and I am going to be doing an insert using a SQL stored procedure. I need to update the user table "balance field" each time I update the history table. Due to it being a switch I can have hundreds of updates each second. I wanted to know the best way to update a field with out dead locks and with out wrong info. I will be using MS sql server 2012.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Partition the user table into evenly sized partitions - SQL 2012 allows 10000 of them. That way the updates are distributed over many allocation units instead of just one. Then add the WITH(ROWLOCK) hint to the update query. To kick off the actual update you could use a trigger. |
|||||
|