This is a discussion on ER - Question within the Informix forums, part of the Database Server Software category; --> Hi All, I work with IDS 7.31UD4 on SCO 3.2 5.0.6. The environment in ER: 1. ER-cycle: Server1 is ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi All, I work with IDS 7.31UD4 on SCO 3.2 5.0.6. The environment in ER: 1. ER-cycle: Server1 is connected to server2 und to server3 (since two Years) 2. ER-cycle: Server4 is connected to server5 (since one Year) Now i want to connect Server4 additional to Server1. How can i do this? With the command: cdr define server -c server4 server1 I got the error: remote/cycle synchronization not allowed. help on this is highly appreciated... Thanks in Advance (excuse my poor english) Heinz sending to informix-list |
| ||||
| First of all let us define the concept of "replication domain". A replication domain consists of all of the servers that are connected to each other, either directly or indirectly. They all share the same global catalogue. For instance. A -- B | C D -- E Would represent two replication domains. The first would consists of nodes A, B, and C, while the second would be nodes D and E. We can not combine two replication domains into a single domain. The error that you got occurs when you try to define a server to a replication domain and are not connected to that server. For instance the following is incorrect. cdr define server -c serv1 -I -S serv2 serv3 However, the following is correct. cdr define server -c serv3 -I -S serv2 serv3 "Heinz Weitkamp" <heinz.weitkamp@westfleisch.de> wrote in message news:bv64bp$ivq$1@terabinaries.xmission.com... > > Hi All, > > I work with IDS 7.31UD4 on SCO 3.2 5.0.6. > > The environment in ER: > > 1. ER-cycle: Server1 is connected to server2 und to server3 (since two > Years) > > 2. ER-cycle: Server4 is connected to server5 (since one Year) > > Now i want to connect Server4 additional to Server1. > How can i do this? > > With the command: cdr define server -c server4 server1 I got the error: > remote/cycle synchronization not allowed. > > help on this is highly appreciated... Thanks in Advance > (excuse my poor english) > > Heinz > > sending to informix-list |