Jaison James
Jaison James

Reputation: 4552

I am not able to export my DB with wamp server 2.0 and win 7

When I am trying to export my DB as a .sql file, downloaded popup showing export.php file. Wamp version and OS : wamp 2.0 and win 7.

But Same version wamp server perfectly working with XP.

Is it OS based issue? Can someone suggest a solution?

Upvotes: 0

Views: 2355

Answers (2)

user3927240
user3927240

Reputation: 1

left click on wampserver icon >> phpmyadmin >> on the left panel, click on the database that you wish to export >> export >> select the format you want it in (default sql) >> GO !!!

Upvotes: -1

Lac Viet
Lac Viet

Reputation: 720

You can export your database by using command line interface. On windows, run cmd.exe, then type

mysqldump -u USER -p DATABASE > filename.sql

Remember to replace USER by your username and DATABASE by your database name, you'll be promted to enter your password.

Upvotes: 2

Related Questions