MySQL Forums
Forum List  »  Replication

Re: MYSQL Replication 4.0.X
Posted by: Christian Meisinger
Date: May 04, 2005 02:10AM

what do you mean with 'correlate the data in a third MYSQL DB'?

a simple copy:
server1.mysql1.db1 -> server3.mysql1.db1
server2.mysql1.db1 -> server3.mysql2.db1

that's no problem but you need two mysql running on server3.
mysql 4.x doesn't support mulitmaster replication. (i think 5.x will support it)

or a merge:
server1.mysql1.db1 ->
server3.mysql1.db1
server2.mysql1.db1 ->

beside the multimaster problem a merge would be a problem because of unique, primary keys and auto_increment (if all tables an server1 and server2 have the same names).

so if you want a merge you need to code your own scripts and check for duplicated keys and and and... sounds like a tough job.

Options: ReplyQuote


Subject
Views
Written By
Posted
3011
May 03, 2005 01:31PM
Re: MYSQL Replication 4.0.X
2029
May 04, 2005 02:10AM
1930
May 10, 2005 07:29AM
1957
May 11, 2005 07:05AM
2084
May 11, 2005 10:53AM
1934
May 13, 2005 02:24PM
2062
May 15, 2005 07:24PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.