导出
:
To export MySQL database, open putty on Windows or Terminal in either MAC or Linux OS, Go to the directory where you want this file to be stored using following command,
cd /home/myfiles/
Then use below command to export a databse,
mysqldump --database --user=root --password your_db_name > export_into_db.sql
You will be asked about root password after this command. For windows users who are executing this on their localhost, your password is empty if you ave not set it up. Please direct enter without typing anything.
Now you will get a file named export_into_db.sql in the same directory as you are.
导入 :
To import a .sql file you need to log into your mysql DBMS first.
Typein : mysql -u root -p and enter. It will ask you your root user’s password.
First select the database and then use following command to import the file,
mysql>use my_new_db; mysql>source /home/myfiles/export_into_db.sql
Press enter and your import will start.
Enjoy…
Please feel free to post comments if you have any issues.
原文:http://www.ultechspot.com/mysql/how-export-and-import-mysql-database-using-command-line-interface
转自:命令行导出和导入数据库 How to export and import MySQL database using command line Interface
本文介绍了如何使用命令行界面导出和导入MySQL数据库。包括使用Putty或终端导航到指定目录,通过mysqldump命令导出数据库,以及通过mysql命令与source指令将.sql文件导入到MySQL数据库管理系统中。
964

被折叠的 条评论
为什么被折叠?



