Is it possible to replicate a mysql database by choosing only the tables you want to be replicated (unto the target database) considering the target database has a slightly different structure.
Consider the following:
I have a database loaded with all the data I need to be replicated to the target database. Let's call this our MasterDatabase
Now I have the TargetDatabase
this is a lite version of the MasterDatabase
and will be used will be used for the presentation layer. Note that the two database have tables with different structures.
Is replication possible in this scenario?
If not, is there a solution to update the data on the TargetDatabase
from the MasterDatabase
without doing massive updates maybe selective updates just as a normal replication would work?