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
2009-09-03 19:12:40