I have several databases that I would like to save to a sql file and then transfer them to another system. I used the command "mysqldump databasename > databasename.sql" to back it up and then "mysql databasename < databasename.sql" to restore it just fine. Now there are alot of databases that need to be transfered and instead of backing up each database one by one, i used the --all-databases option when i used mysqldump. Everything went fine, but I'm not sure how to restore it. Every command I have seen requires a database name. Any help would be greatly appreciated. Thanks