Previous Thread

7/13/2006 10:03:09 PM    REPLICA QUESTIONS




7/14/2006 6:54:25 AM    Re: REPLICA QUESTIONS
"DREAMER" <LG@ARGENTINA.COM> wrote in 
 
news:e0tgEFupGHA.2292@TK2MSFTNGP05.phx.gbl: 
 
No, they are not the same. They have the same data and the same 
 
design, but as soon as they are opened, they are no longer 
 
identical, because each will get a new, unique ReplicaID. 
 
Eh? 
 
A ReplicaID is a GUID, which, as the name implies, is globally 
 
unique. It is calculated from machine-specific data and from the 
 
time it is created and cannot collide with another GUID generated 
 
elsewhere. 
 
The assignment of ReplicaIDs is not something you can control, and 
 
it's not something you should worry about. 
 
What you've done so far is just fine. Now you have to figure out how 
 
to synch between the replicas, in-place. That means indirect 
 
replication, as only a LAN is sufficiently fast and reliable to 
 
support direct replication (i.e., the kind of replication you get 
 
from the Access user interface). 
 
-- 
 
David W. Fenton                  http://www.dfenton.com/ 
 
usenet at dfenton dot com    http://www.dfenton.com/DFA/

7/15/2006 8:19:53 PM    Re: REPLICA QUESTIONS
"DREAMER" <LG@ARGENTINA.COM> wrote in 
 
news:#xb#vAHqGHA.3908@TK2MSFTNGP05.phx.gbl: 
 
The best synch method depends on the connection present. If all 
 
replicas are accessible to each other over a LAN, or if you only 
 
want to synch when connected to a LAN, direct replication will work. 
 
If you need to synch over dialup, over the Internet, over a wireless 
 
connection or over a WAN, then you need to use indirect replication. 
 
Replication manager is not really an end-user tool, in my opinion. I 
 
would program the synch into the user application so that the users 
 
only have to click a button or choose something from a menu. 
 
-- 
 
David W. Fenton                  http://www.dfenton.com/ 
 
usenet at dfenton dot com    http://www.dfenton.com/DFA/

7/15/2006 9:32:03 PM    Re: REPLICA QUESTIONS