网络编程
位置:首页>> 网络编程>> 数据库>> MySQL Dump/Restore

MySQL Dump/Restore

 来源:Asp之家 发布时间:2010-10-14 13:49:00 

标签:mysql

Dump ALL MySQL Databases


mysqldump --user=XXXXXXXX --password=XXXXXXX -A > /PATH/TO/DUMPFILE.SQL


Dump Individual or Multiple MySQL Databases

mysqldump --user=XXXXXXXX --password=XXXXXXX --databases DB_NAME1 DB_NAME2 DB_NAME3 > /PATH/TO/DUMPFILE.SQL

Dump only certain tables from a MySQL Database

mysqldump --user=XXXXXXXX --password=XXXXXXXX --databases DB_NAME --tables TABLE_NAME > /PATH/TO/DUMPFILE.SQL


Use the following procedure to reload the contents of a database:

  1. Unzip the backup file you wish to use.

  2. Open it up and pull out only the information that you will need.

  3. Save this text file.

  4. Use the following command to feed back in the contents of a text file:

mysql --verbose --user=XXXXXXXX --password=XXXXXXXX DB_NAME < /PATH/TO/DUMPFILE.SQL


0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com