If you are reading this blog then probably you are facing the same issue that I had faced, i.e., how to import the sql-dump-file in the mysql where size of the sql-dump-file exceeds the maximum file size limit of phpMyAdmin.
I was having a sql-dump-file (got from client) that I need to import on my local database in mysql. The file size was 186 MB while the maximum size limit of phpMyAdmin was 8 MB. A BiG PrObLeM!
Then I searched on Google and found that, there are few tricks available to achieve this. Most of them are related to modifying the php.ini file as given below:
I was having a sql-dump-file (got from client) that I need to import on my local database in mysql. The file size was 186 MB while the maximum size limit of phpMyAdmin was 8 MB. A BiG PrObLeM!
Then I searched on Google and found that, there are few tricks available to achieve this. Most of them are related to modifying the php.ini file as given below:
- Increase the
upload_max_filesize
limit. - Increase the
post_max_size
limit. - Increase the
memory_limit
limit. Though you can not go beyond 128M.
Let's see the process to solve our problem. Steps to follow:
- Find the location of mysql on the system.
- Go inside it's bin directory.
- Copy the path displaying in the address bar.
- Open the command-prompt.
- Change the directory in command-prompt to the directory in which mysql is installed.
- Type
cd
then paste the path that we had copied and press Enter. - The prompt will show the path where mysql is installed. Verify that!
- Type
mysql -u your_user -p your_database < dump_file.sql
and press Enter. Here, - your_user is mysql username
- your_database is the mysql database/schema
- dump_file is the complete physical path of the sql-dump-file.
- Now enter mysql password, press Enter and wait ...
- If prompt appears, then your sql-dump-file is successfully uploaded. Otherwise, re-iterate the process.
Comments
Post a Comment