I have a mysqldump file which was taken using the following command.
mysqldump -u root --password=<passwd> 'gss-app' table1 table2 ... tableN --skip-triggers --skip-add-drop-table --skip-lock-tables --compact --no-create-info --quick | bzip2 -c > /var/backups/gss-app.sql.bz2
I have decompressed the dump and want to restore a table named sd_images
. As the create table and drop table statements are skipped in the command used the dump file starts INSERT INTO
table_name
for each table. Could anyone please help me to restore only sd_images
table into my database.?