If you need to restore a single table from a full MySQL backup, you may find yourself wondering "how do I do that?". There are a few steps required, I outline them here for you to restore the contents of just one table back into the database from the mysqldump using Bash.

Restore a MySQL table from a mysqldump backup, using Bash

As outlined in the intro, there are a few required steps you need to perform to restore a single table from a mysqldump backup, because all your tables and data are in one file. Your mysqldump backup file might be hundreds MB's in size. Therefore, you first need to single out the table you want restored.

In my examples I use the WordPress wp_options table.

Talking about wp_options, did you know that you can optimize wp_options by adding an index on the autoload column?

On your Bash shell, use sed to separate the data belonging to your table that needs restoring:

sed -n -e '/DROP TABLE.*`wp_options`/,/UNLOCK TABLES/p' mysql_examplecom.sql > examplecom_wp_options.sql

This will copy data in the dump file mysql_examplecom.sql what is between DROP TABLE.*`wp_options` and reads until mysql is done dumping data to your table (UNLOCK) into a new file.

Next you can import the newly created table dump file into MySQL:

mysql -u <user> -p < examplecom_wp_options.sql

And that's it! This saved me more than once, that's why I've now documented it here. Other methods to single out the table required do exist. Always be careful and work with additional backups.

Don't forget to check, repair and optimize MySQL tables afterwards.

References: uloBasEI and bryn @ StackOverflow's Can I restore a single table from a full mysql mysqldump file?

Donate a cup of coffee
Donate a cup of coffee

Thank you very much! <3 ❤️

2 Comments

  1. Le Hoang Long

    Thank you a lot
    you save my life
    I had to check the multi backup version to gain some piece of information

  2. Nikolai

    Thanks! It’s realy help me!

Comments are closed