2

I have a huge 1.6 GB MYSQL database on my wamp local server.

I want to shift this database to another computer, so in phpmyadmin, when I export the database and click GO for download the sql file, then it takes around 5-10 mins to load and at-last displays the error "Firefox can't find the file at http://localhost/phpmyadmin/export.php."

How can I have backup of the data?

Niraj Chauhan
  • 252
  • 2
  • 13

1 Answers1

7

Use mysqldump to dump the contents of the database to disk instead.

Ignacio Vazquez-Abrams
  • 45,939
  • 6
  • 79
  • 84