I have a MySQL Database on mt Windows computer. I need to take one database and copy it to another machine. The other machine also runs windows and has MySQL Database. The
The best way it dump your DB as SQL file. And then import on another machine.
mysqldump -uuser -i uutfile.sql -p db_name mysql -uuser -p < uutfile.sql