Get 50% Discount Offer 26 Days 

Contact Info

69, 4th Floor, Rayerbag ShoppingComplex, Jatrabari, Dhaka-1362

+8801608060430

support@bytesis.com

Client Area
Recommended Services
Supported Scripts
WordPress
Hubspot
Joomla
Drupal
Wix
Shopify
Magento
Typeo3

Introduction

Restoring a large MySQL database can be challenging, especially when dealing with timeouts, memory limits, or import failures. This guide will walk you through the best methods to successfully restore a large MySQL database efficiently.

Prerequisites

Before you begin, make sure you have the following:

  • A MySQL database server installed and running.
  • The .sql backup file of your database.
  • Access to the terminal (SSH if working on a remote server).
  • Sufficient disk space for the database import.

Method 1: Using MySQL Command Line

This is the simplest and most common way to restore a MySQL database from a .sql file.

Steps:
  1. Open Terminal or SSH into the Server
    ssh user@your-server-ip

    Replace user@your-server-ip with your actual username and server IP.

  2. Navigate to the Directory Containing the SQL File
    cd /path/to/your/sqlfile

    Change /path/to/your/sqlfile to the actual directory where your .sql file is stored.

  3. Run the MySQL Import Command
    mysql -u your_username -p database_name < database_filename.sql
  • Replace your_username with your MySQL username.
  • Replace database_name with the name of the database where you want to import the data.
  • Replace database_filename.sql with the actual file name.
  1. Enter MySQL Password You will be prompted to enter your MySQL password. Type it in and press Enter.
  2. Wait for the Import to Complete The import process may take a while depending on the size of the database.

Method 2: Using MySQL Source Command (For Large Databases)

If you are experiencing timeouts or memory issues, using MySQL’s interactive mode with the SOURCE command can be a better approach.

Steps:
  1. Log in to MySQL
    mysql -u your_username -p

    Enter your MySQL password when prompted.

  2. Select the Database
    USE database_name;

    Replace database_name with your target database.

  3. Execute the SQL File
    SOURCE /path/to/database_filename.sql;
  • Replace /path/to/database_filename.sql with the full path of the .sql file.
  • This method helps in better handling large database imports.

Method 3: Using MySQLDump for Partial Imports

For extremely large databases, you may want to split the import into smaller chunks.

Steps:

  1. Split the SQL File into Smaller Parts
    split -l 50000 database_filename.sql db_part_
  • This splits the file into smaller parts containing 50,000 lines each.
  1. Import Each Part Sequentially
    mysql -u your_username -p database_name < db_part_aa
    mysql -u your_username -p database_name < db_part_ab
    • Run the command for each split file in sequence.

Method 4: Using MySQL Workbench (GUI-Based Approach)

If you prefer a graphical user interface, MySQL Workbench provides an easy way to restore large databases.

Steps:
  1. Open MySQL Workbench
  2. Connect to Your Database Server
  3. Go to Server > Data Import
  4. Select Import from Self-Contained File and choose your .sql file.
  5. Click Start Import and wait for the process to complete.

Common Issues and Fixes

 

1. Packet Size Too Large

Error:

ERROR 2006 (HY000): MySQL server has gone away

Fix: Edit your my.cnf file and add:

max_allowed_packet=256M

Then restart MySQL:

sudo systemctl restart mysql

2. Lock Wait Timeout Exceeded

Fix:

SET GLOBAL innodb_lock_wait_timeout = 500;

3. Import Taking Too Long

Use MySQLDump with compression:

mysql -u your_username -p database_name < database_filename.sql --compress

Conclusion

Restoring a large MySQL database requires the right approach based on file size and server limitations. Using the MySQL command line, the SOURCE command, splitting large files, or using MySQL Workbench can help you achieve a smooth database restoration.

For best performance, always optimize your MySQL settings and monitor server resources during the import process.

Share this Post

Leave a Reply

Your email address will not be published. Required fields are marked *