You can also ask your host, or, if you have ssh access, to load the sql dump file in through ssh. Doing so through ssh is much faster, and can handle very large databases.

Code: 
mysql -u username -p -D databasename < dumptextfile.sql
This will ask you for the database password when run. Of course, you must fill in the correct information above.