I have serverA and ServerB. I need ServerA to copy a database to ServerB and UPDATE/INSERT/DELETE as it changes. I think this can be done with replication but I don't want to continually open a connection. Is it possible to use CREATE EVENT or TRIGGERS? If so, where do I start?
Tell me more
×
Database Administrators Stack Exchange is a question and answer site for
database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
|
|
|||||
|
migrated from stackoverflow.com Dec 15 '12 at 15:27
|
Replication DOES NOT require an open connection. There's even an entry in the FAQ for this.
If anything, replication is the most efficient solution when you only want to send changes from a master server to a replica periodically |
|||
|