tags:

views:

256

answers:

1

Hi, is there an easy way to import a large .sql file of my database on local host without using phpmyadmin. I am using the WAMP server. Thanks for any help.

+1  A: 

If you have access to the console you can run mysql directly and just import the file.

something to the effect of:

mysql -u username -p database_name < sqlfile.sql
Quintin Robinson