1

在工作中,我们有一个脚本,每晚都会进行 mysql 数据转储。对于开发,我们通常需要使用最新转储中的数据。一段时间以来,我们每天都在进行数据库恢复,但现在我们已经到了每天恢复需要将近一个小时的地步。有没有办法让我们在 mysql 中进行增量还原,或者只是进行增量转储。有点像补丁文件,但用于 mysql。对此主题的任何帮助将不胜感激。

-赫里尼克

4

1 回答 1

1

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.

于 2011-06-22T19:35:53.420 回答