PDF (A4) - 35.2Mb
Man Pages (TGZ) - 256.4Kb
Man Pages (Zip) - 361.2Kb
Info (Gzip) - 3.4Mb
Info (Zip) - 3.4Mb
MySQL Globalization
MySQL Information Schema
MySQL Installation Guide
MySQL and Linux/Unix
MySQL and macOS
MySQL Partitioning
MySQL Performance Schema
MySQL Replication
Using the MySQL Yum Repository
MySQL Restrictions and Limitations
Security in MySQL
MySQL and Solaris
Building MySQL from Source
Starting and Stopping MySQL
MySQL Tutorial
MySQL and Windows
MySQL NDB Cluster 7.5
On Server 1:
$> mysqldump --databases db1 > dump.sqlCopy the dump file from Server 1 to Server 2.
On Server 2:
$> mysql < dump.sql Use of--databases with themysqldump command line causes the dump file to includeCREATE DATABASE andUSE statements that create the database if it does exist and make it the default database for the reloaded data.
Alternatively, you can omit--databases from themysqldump command. Then you need to create the database on Server 2 (if necessary) and to specify it as the default database when you reload the dump file.
On Server 1:
$> mysqldump db1 > dump.sqlOn Server 2:
$> mysqladmin create db1$> mysql db1 < dump.sql You can specify a different database name in this case, so omitting--databases from themysqldump command enables you to dump data from one database and load it into another.
PDF (A4) - 35.2Mb
Man Pages (TGZ) - 256.4Kb
Man Pages (Zip) - 361.2Kb
Info (Gzip) - 3.4Mb
Info (Zip) - 3.4Mb
MySQL Globalization
MySQL Information Schema
MySQL Installation Guide
MySQL and Linux/Unix
MySQL and macOS
MySQL Partitioning
MySQL Performance Schema
MySQL Replication
Using the MySQL Yum Repository
MySQL Restrictions and Limitations
Security in MySQL
MySQL and Solaris
Building MySQL from Source
Starting and Stopping MySQL
MySQL Tutorial
MySQL and Windows
MySQL NDB Cluster 7.5