vote up 0 vote down star

I used mysqlhotcopy to dump a database full of tables. I know have various .frm, .MYD, and .MYI files that I need to import into a different instance of MySQL. Do I just copy these files into a specific folder on the 2nd system, or do I have to run mysqlhotcopy with another command line option to perform the import?

flag

1 Answer

vote up 1 vote down check

Those are the binary data files for your tables - if you have a .frm, .MYD and .MYI for each, you can copy those into your database folder (typically /var/lib/mysql/<schema-name>/). Stop your database first though!

If you make mysqlhotcopy run a bit faster with the --noindices option, then after copying the files you'll need to recreate the indices from the data files - inside the database directory, run myisamchk -rq

link|flag
I figured that's all it was, but I couldn't find documentation that spelled it out, and I also wasn't sure what path I needed. Thanks for the info! :) – Matt Huggins Sep 28 at 21:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.