I need to import a .sql file into a database. The problem is that .sql file is about 10mb, but PHPMyAdmin only can import databases of 2mb max. How do I import this file?
What I would do is upload the file to my server, then use the mysql command line tool to import it directly into mysql. If that option isn't available to you, you could try manually breaking the file into about 5 or 6 pieces and load into phpMyAdmin.
Do a google search for "Big Dump". Sorry I don't have a link handy right now... I used this to import a very large 47MB database once. Bye