Reputation: 47
I have a server that constantly writes SQL queries it executes to a textfile. I want this textfile to be read by a second server, execute the queries there, and remove them from the textfile. This is done in an attempt to keep those 2 servers virtually synchronous with each other without changing existing code.
Upvotes: 0
Views: 154
Reputation: 6152
Try this one: http://www.maatkit.org/doc/mk-table-sync.html
But I think that Native thing such as mysql replication should be preferred
Upvotes: 2