I would like to copy a MySQL database form Linux to Windows, from a little research I found this url http://www.cyberciti.biz/tips/howto-copy-mysql-database-remote-server.html where the author says we could copy MySQL Database using the following command in Linux
Linux to Linux
mysqldump -u username -p 'password' db-name | ssh [email protected] mysql -u username -p 'password' db-name
Is there a command for copying MySQL database from Linux to Windows?