How to Import Large MySQL Dumps
To import sql dumps it's commonly used PhpMyAdmin. However, if the dump is too large, there some problems can appear such as file size limit, exceeding script execution time, memory shortage and so on.
So the best solution in this case (and the proper one) is to use mysql client utility via the console. For import sql dump we should use "source" statement.
Category: