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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.