At work we have a script that does a mysql data dump everynight. For development we usually need to work with data from the most recent dump. We kept doing a database restore every day for some time but now we are getting to a point where the restore is taking close to an hour everyday. Is there a way for us to do a delta restore in mysql or maybe just do a delta dump. Kind of like a patch file but for mysql. Any help on this topic would be greatly appreciated.

-Hrithik

link|improve this question
you recreate your database everyday? or you append new information? – Neal Jun 22 '11 at 18:52
1  
have you checked dev.mysql.com/doc/refman/5.1/en/backup-methods.html? – Serhiy Jun 22 '11 at 18:53
feedback

1 Answer

up vote 0 down vote accepted

An incremental backup will probably be your best option. Using a log file it creates something similar to a patch file.

If both servers are running the same version of MySQL you can simply copy the MySQL files.

link|improve this answer
You can simply copy the MySQL if using MyISAM not InnoDB. – gdelfino Jun 22 '11 at 19:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.