0
votes
How do I split the output from mysqldump into smaller files?
You can dump individual tables with mysqldump by running mysqldump database table1 table2 ... tableN
If none of the tables are too large, that will be enough. Otherwise, you'll …
