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?
|
|
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 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 |
||
|
