New MySQL MSI Installer
New MySQL MSI Installer
video on how to install MySQL on Windows 7. If you have already installed a local server
with this MySQL, here is how to backup all your databases. Open Command Prompt and
enter the following line:
mysqldump -u root -p[password] -h [host] --all-databases > dump-name.sql
With MySQL Workbench it is easy to import sql/dump file as you can see in the video. If
you don't want to install MySQL Workbench, here is how to import sql/dump from the
command line:
mysql -u root -p < d:/mysqldump.sql