InterviewSolution
| 1. |
What Are The Different Types Of Replication Are There In Sql Server 2000? |
|
Answer» Snapshot replication distributes data exactly as it appears at a specific moment in time and does not monitor for updates to the data. Snapshot replication is best used as a METHOD for replicating data that CHANGES INFREQUENTLY or where the most up-to-date values (low latency) are not a requirement. When synchronization occurs, the entire snapshot is generated and SENT to Subscribers. Snapshot replication distributes data exactly as it appears at a specific moment in time and does not monitor for updates to the data. Snapshot replication is best used as a method for replicating data that changes infrequently or where the most up-to-date values (low latency) are not a requirement. When synchronization occurs, the entire snapshot is generated and sent to Subscribers. |
|