AKZN Notes

Archives for My Lazy and Forgetful Mind

How to import big table using mysql command on terminal

Understanding the MySQL Import Command with Custom Parameters

When importing large SQL dump files into MySQL, it is often necessary to adjust MySQL's configuration parameters to handle large queries and improve performance. The following command is an example of importing a database dump while customizing MySQL’s memory settings and disabling foreign key checks:

"D:\xampp\mysql\bin\mysql" --max_allowed_packet=512M --net_buffer_length=1000000 -u root -p --init-command="SET FOREIGN_KEY_CHECKS=0;" matagenggong_250322 < "D:\Temp\dump\matagenggong (2).sql"

Breakdown of the Command

  1. MySQL Executable Path:

    • "D:\xampp\mysql\bin\mysql" specifies the path to the MySQL client executable. If MySQL is installed via XAMPP, this is the typical location.
  2. Memory Settings:

    • --max_allowed_packet=512M increases the maximum packet size that MySQL can handle to 512 MB. This is useful for large queries or bulk inserts.
    • --net_buffer_length=1000000 sets the initial network buffer size to 1 MB, helping with large data transfers.
  3. Authentication:

    • -u root specifies the username (root in this case).
    • -p prompts the user to enter the MySQL root password before proceeding.
  4. Foreign Key Checks:

    • --init-command="SET FOREIGN_KEY_CHECKS=0;" disables foreign key checks before executing the import. This prevents issues related to foreign key constraints, especially when inserting dependent records in a non-sequential order.
  5. Database Selection:

    • matagenggong_250322 specifies the target database where the SQL dump will be imported.
  6. SQL Dump File Path:

    • < "D:\Temp\dump\matagenggong (2).sql" redirects the SQL file’s content into the MySQL command for execution.

Best Practices When Importing Large SQL Files

  • Increase Timeout Settings: If the import process takes too long, adjust MySQL’s wait_timeout and interactive_timeout settings in my.ini.
  • Use MySQL Configuration Files: Instead of setting options in the command line, configure them in my.ini for persistent effects.
  • Optimize Index Handling: Consider disabling indexes before import and rebuilding them afterward for performance improvements.
  • Verify Data Integrity: After import, re-enable foreign key checks and run consistency checks using CHECK TABLE or ANALYZE TABLE.

Conclusion

Using the MySQL command with adjusted memory parameters and foreign key settings can significantly improve the efficiency of large database imports. By understanding each parameter, you can optimize the import process and minimize potential errors.

Leave a Reply

Your email address will not be published.