I am using SQL Server 2008 r2 and having one table(Account) which store totalamount and livebalance.
I am planning to setup a new Database server and sync it using transactional replication with update subscription, so that the response time for customer can increase.
Since this table is updated very frequently, i assume more then 100 times/sec,
I have done some initial testing but stuck at sync issue:
This i have done so far:
- Setup up transactional replication with update subscription using PUSH method for new NODE
Problem: Now since same account is getting updated frequently at both node, i am going out of sync, i was reading about some custom resolution process in case of conflict but dont know if it can be done in my case.
I really need help in solving the issue, is my approach correct, how can i make sure that both account remain in sync, there can be some delay it will be ok but the response time and account balance should remain in sync.
Can you please guide me how can it be done correctly.