Reputation: 2885
I have Database1
on server1
and Database2
,Database3
on server2
. Database1
has two tables T1
, T2
. I want to replicate T1 on Database2
and T2 on Database3
.
How can I accomplish it?
I googled but only found examples where replication was performed to only one DB.
Upvotes: 2
Views: 2129
Reputation: 15
Restrict the replication on Database2
to only T1
and on Database3
to only T2
, using the --replicate-do-table=name
option:
Upvotes: 0