ACC95: Deleted Replicas Still Show in Synchronization ListID: Q164237
|
Moderate: Requires basic macro, coding, and interoperability skills.
After you try to synchronize with a deleted replica database, the deleted
replica's name still appears in the list of databases when you point to
Replication on the Tools menu, and then click Synchronize Now.
NOTE: This does not apply to replication features implemented using the
Replication Manager from the Microsoft Access Developer's Toolkit version
7.0.
You can create a custom procedure that tries to synchronize with the
deleted replica using the Synchronize method. If the database is not found,
its name is removed from the synchronization list. Run the following
procedure in each database in the replica set where you want to remove a
deleted replica name from the synchronization list.
Sub RemoveDeletedReplica()
Dim strDelReplica as String
On Error Resume Next
strDelReplica = InputBox _
("Enter the full path and name of deleted replica")
CurrentDb.Synchronize strDelReplica
End Sub
This behavior no longer occurs in Microsoft Access 97.
Microsoft Access can't open the database '<Database Name>'. Couldn't find file '<Database Name>'.
For more information about replication issues and solutions, please see the
following articles in the Microsoft Knowledge Base:
Q146884 ACC95: Replicated Object Replaced by Local Object in Replica
Q153526 ACC: How to Unreplicate a Database
For more information about the Synchronize method, search the Help Index
for "Synchronize method."
Keywords : kbusage RplGen
Version : 7.0
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: April 26, 1999