I have a database it is quite larger so I wanted to export it using Command Prompt, but I dont know how to.
Please help I am using WAMP
I have a database it is quite larger so I wanted to export it using Command Prompt, but I dont know how to.
Please help I am using WAMP
Ok,
First check if your DOS recognizes mysql command. If not go to command and type in
set path=c:\wamp\bin\mysql\mysql5.1.36\bin
(I just made a guess, since you are using WAMP)
Then use this command to export your database
mysqldump -u youruser -p userpassword yourdatabase > wantedsqlfile.sql
This exports the database to the path you are currently in, while executing this command
http://www.thegeekstuff.com/2008/09/backup-and-restore-mysql-database-using-mysqldump/#more-184