Hi
After backing up multiple databases with the following command:
mysqldump --all-databases > bkp.sql
I wonder how to retrieve them using something like:
mysql database < bkp.sql
I know it works for simple databases, but is it possible for multiple (I hope so), and what would be the correct syntax ?
Thank you
cry-cry