Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Replication and Synchronizing

Status
Not open for further replies.

jeep92

MIS
Oct 29, 2001
1
US
When I synchronize a Replica with the Master database, both the Master and the Replica are updated. Is there a way so that the replica does not get updated with all the records from the Master, only the Master receiving the records from the Replica?

 
In Visual Basic, you do it like so:
dbMaster.Synchronize ReplicaDBName, dbRepImportChanges
where dbMaster is the master database, ReplicaDBName is the full path name of the replica, and dbRepImportChanges is a predefined constant telling the Master to import changes from the Replica but not to send changes to the Replica.

The same functionality should be available in Access with VB for applications. You'll have to code a macro, and probably assign it to a command button.

Good luck.

Mike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top