merge - Methods for merging or moving an active MySql database -
I'm upgrading a set of tables, adding and changing things. I copy all my data in new format ... so it automatically gets old because the old data is continuously added and changed.
Without closing the old system, is there a way to merge two methods when the data is still going on in old?
If the transaction log (logs of logs of questions) is turned on, you can dump the old database After that, after the DB dump began, repeat the statement from the transaction log on the new DB. It can be done with a very simple bash or a PowerShell script.
Once the ripples have to be captured on 'DB', you can temporarily stop the application access to the old DB , Play any remaining statement again and switch your app to new db
View MySQL Docs on (PITR).
Comments
Post a Comment