mysqldump doing a partial backup - incomplete table dump

一曲冷凌霜 提交于 2019-12-08 10:04:29

There is a 2GB filesize limit for some reason, the easiest way to get around this is using split:

mysqldump ... | split -b 250m - filename.sql-

You can also compress the files like this:

mysqldump ... | gzip -9c | split -b 250m - filename.sql.gz-

To restore from a non-compressed file, do this:

cat filename.sql-* | mysql ...

For a compressed file:

cat filename.sql-* | zcat | mysql ...

Of course if you want a single file, you can then tar the result.

Obviously you can replace the 250m with a different size if you wish.

Your filesystem probably is limited to 2gb files.

It's happen because some SQL Dump have limited size for dumping data. you could not dump the database if it over the limit.

If you really want to do this you must compress the database.By using ZIP,GZIP,etc. Before dumping data.

I had similar, though all the tables were exported up to a certain point.

I'd removed a column on which an old redundant View depended, and mysqldump quietly choked trying to 'export' the View

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!