What is the best way to sync multiple client SqlServers to one MS SqlServer 2005?

Posted by user605055 on Stack Overflow See other posts from Stack Overflow or by user605055
Published on 2011-02-06T06:10:43Z Indexed on 2011/02/06 7:26 UTC
Read the original article Hit count: 125

I have several client databases that use my windows application.

I want to send this data for online web site.

The client databases and server database structure is different because we need to add client ID column to some tables in server data base.

I use this way to sync databases; use another application and use C# bulk copy with transaction to sync databases.

My server database sql server is too busy and parallel task cannot be run.

I work on this solution: I use triggers after update, delete, insert to save changes in one table and create sql query to send a web service to sync data.

But I must send all data first! Huge data set (bigger than 16mg)

I think can't use replication because the structure and primary keys are different.

© Stack Overflow or respective owner

Related posts about c#

Related posts about database