Can i transfer one MySQL database without stoping MySQL server? -


detailed: have mysql databases,for example:

create database mydb1; create database mydb2; create database mydb3; create database mydb4; 

each 1 databased used client. mydb1 started use resources , needs dedicated server. need transfer only one database(its ok if database unavailable(better if available time) other databases should available time. free version of mysql enough? each database size near 5 gb.

mysql has tool called myqslhotcopy, desigend dump running database. use lock_table, supposed faster way mysqldump. http://dev.mysql.com/doc/refman/5.0/en/mysqlhotcopy.html

my suggestion dump database during non peak hours , use scp/rsync move desired server.

another approach use mysqldump bitmap has suggested in answer.


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -