-
Notifications
You must be signed in to change notification settings - Fork 300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dump all tables as individual files #223
Comments
Hi, only came across this project today and am already loving and using
it. Just wondering, is there an option to dump all tables in individual
files rather than the entire database as one file? Our databases are multi
GB and our problem is restoring. We rather restore tables rather than the
entire database in one go.l
Thanks for your kind words. Currently is not possible to use several files.
I can only think about hacks, but none of them would be really useful. Best
thing is to call mysqldump-php one for each table, but if you have another
option in mind, just tell.
Regards,
|
Thanks for the update. I'll dig around over the next few days/weeks and see if I can come up with something and push it back. |
That shouldn't be a big deal because you have include-tables option. Just run in for each table individually:
|
Nice one. Thanks phpony. The simplest solutions are often the best. Works perfectly. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, only came across this project today and am already loving and using it. Just wondering, is there an option to dump all tables in individual files rather than the entire database as one file? Our databases are multi GB and our problem is restoring. We rather restore tables rather than the entire database in one go.
The text was updated successfully, but these errors were encountered: