This section explains various techniques for moving or copying some
or all InnoDB tables to a different server. For
example, you might move an entire MySQL instance to a larger, faster
server; you might clone an entire MySQL instance to a new
replication slave server; you might copy individual tables to
another server to development and test an application, or to a data
warehouse server to produce reports.
On Windows, InnoDB always stores database and
table names internally in lowercase. To move databases in a binary
format from Unix to Windows or from Windows to Unix, create all
databases and tables using lowercase names. A convenient way to
accomplish this is to add the following line to the
[mysqld] section of your
my.cnf or my.ini file
before creating any databases or tables:
[mysqld] lower_case_table_names=1
Like MyISAM data files, InnoDB
data and log files are binary-compatible on all platforms having the
same floating-point number format. You can move an
InnoDB database simply by copying all the
relevant files listed in Section 14.6.5, “Backing Up and Recovering an InnoDB Database”. If the
floating-point formats differ but you have not used
FLOAT or
DOUBLE data types in your tables,
then the procedure is the same: simply copy the relevant files. If
you use mysqldump to dump your tables on one
machine and then import the dump files on the other machine, it does
not matter whether the formats differ or your tables contain
floating-point data.
One way to increase performance is to switch off autocommit mode when importing data, assuming that the tablespace has enough space for the big rollback segment that the import transactions generate. Do the commit only after importing a whole table or a segment of a table.

User Comments
Add your own comment.