Hi,
I have application that use SQL server database in local network, and I have remote network that has same database structure and I want to synchronize data.
I have problem how to know deleted rows and added rows in the database.
I little other words:
Updated rows -> Normal updating using table primary key and depending on modify date.
Deleted rows -> Normal deleting using table primary key but how can I now if the rows is deleted or new .
Added rows -> Normal adding, but how can I now if the row is new or deleted one
Note: I want to get merge data between both databases because all databases have users.
Regards

Synchronizing Database
sally_de
Roger is right -unless you have some funky network connection between your databases your best option is to consider database replication
see http://msdn2.microsoft.com/en-us/library/ms151827.aspx and http://www.replicationanswers.com/Default.asp
Arnon
Henrik Karlsson
I'll try to use database replication.
shayc