Dump with --tab format so you can use mysqlimport, which is
faster than mysql < dumpfile
Import with multiple threads, one for each table.
Use a different database engine if possible. importing into a
heavily transactional engine like innodb is awfully slow. Inserting
into a non-transactional engine like
MyISAM is much much faster.
Look at the table compare script in the Maakit toolkit and see if you can
update your tables rather than dumping them and importing them. But
you're probably talking about backups/restores.
Is it possible to restore a MySQL database from the physical database files. I have a directory that has the following file types:
client.frm
client.MYD
client.MYI
but for about 20 more tables.
I usually use mysqldump or a …
I have a mysqldump backup of my mysql database consisting of all of our tables which is about 440 megs. I want to restore the contents of just one of the tables from the mysqldump. Is this possible? Theoretically, I could …