Hello;
This is the scenario:
- I have a MySQL server with a database, let's call it consolidateddb. This database a consolidation of several tables from various databases
- I have another MySQL server, with the original databases, these databases are production databases and are updates daily.
- The company wants to copy each update/insert/delete on each table in the production databases to the corresponding tables in consolidateddb.
Would replication accomplish that? I know that replication is done on a databas to database, but not on tables that belong to different databases to one target database.
I hope my explanation was clear. Thanks.
Edit: Would a recursive copy of all tables inn each database to the single slave work? Or is it an ugly solution?