Import Large Databases into PHPMyAdmin using BigDump
Hi all, Few days back I was working on a project having large database.Before applying new modifications in the project, backup of the current databse was necessary.when I was taking backup it gave me error because it was too big, because it exceeded the timeout. For the solution of this error i googled and found one amazing solution the name of which is BigDump . What is BigDump? When you are about to replicate or move a database then importing large SQL dumps can be difficult for those with only web access to the MySQL server. phpMyAdmin has certain shortcomings when importing files of more than a modest size. In such cases BigDump can be a helpful utility. How to use BigDump? 1. Download the BigDump from here : BigDump 2. Extract the bigdump.zip file and open the bigdump.php file in a text editor. 3. Configure: Server, database name, username, password, and the file name. <?php // Database configuration $db_se...