How Long Should A 75mb Sql File Take To Import In Phpmyadmin?
I'm importing a 75mb sql file into MySql using PHPMyAdmin. Specifically, it's the Moby Thesaurus (http://icon.shef.ac.uk/Moby/mthes.html). 75MB doesn't seem that much to me, but it
Solution 1:
Do it on command line:
mysql -u USER -p DBNAME < SQLFILE.SQLEnter password when prompted and there you go.
Post a Comment for "How Long Should A 75mb Sql File Take To Import In Phpmyadmin?"