I have a database of about 6GB in size and it has a table with 12.6 million rows. I tried to export the database into a SQL dump by:
mysqldump -u root -p db_name > db_name.sql
When the command finishes, the exported SQL dump file is just about 2GB and the primary table got exported only about 1 million rows.
What could possibly be wrong?
There is a 2GB filesize limit for some reason, the easiest way to get around this is using
split:You can also compress the files like this:
To restore from a non-compressed file, do this:
For a compressed file:
Of course if you want a single file, you can then
tarthe result.Obviously you can replace the
250mwith a different size if you wish.