What's the difference between peer-to-peer replication and merge replication using SQL Server?
|
1
|
|
|
|
|
|
|
||
|
|
|
|
EDIT Transactional and Snapshot replication move data from publisher to subscriber. They are used primarily for editing in a single place and viewing / reporting data in multiple places. Transactional is almost instantaneous, while snapshot has to be scheduled. Transactional has a heavy initial resource requirement because it creates an initial snapshot and then it reads subsequent transactions from the transaction log to send data over. Snapshot is resource intensive every time it runs because it generates a new snapshot every time. Merge replication lets you have multiple places where you can edit the data, and have it synchronized in near-real-time with the peers. Merge replications essentially runs a transactional replication engine to distribute the transactions, and additional logic to apply the transactions at the destination(s). Here is some reading material http://technet.microsoft.com/en-us/library/ms152531.aspx |
||||
|
