Hi,
I need to synchronize 2 SQL 2008 Db. So I understand I need to use the Sync provision and that will generate the triggers, tracking tables and SP.
I can not use the default SP generated by sync framework to upload the data to server. For example: If the server has the record with the latest timestamps then ignore the changes sent by Client. In my application, the client can talk to each other and exchange
some data. So the chnages needs to eb merged based on the timestamp of the record. rather than server/client wins.
Is there any example where sync SP has been updated to match some business rule? Or say I wanted to add a constraint saying there can be max N records per PK in FK table.
Say Server first synched with Client1 and Cleint2.Now client 1 and 2 can make changes and client 1 and client 2 can exchange the data. So at the time of uploading the data to the server , server needs to ignore any change that was made in time T1 if the
change from time T2 is already synched.