這篇文章主要講解了“MySQL5.7怎么通過mysqldump還原數(shù)據(jù)庫”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Mysql5.7怎么通過mysqldump還原數(shù)據(jù)庫”吧!
在河?xùn)|等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè) 網(wǎng)站設(shè)計制作定制網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),成都營銷網(wǎng)站建設(shè),外貿(mào)營銷網(wǎng)站建設(shè),河?xùn)|網(wǎng)站建設(shè)費用合理。
[root@test tmp]# du -sh test.sql
17G test.sql
mysqldump備份的文件
[root@test ~]# mysql -uroot -ptestpassword --default-character-set=utf8 test < /tmp/test.sql
mysql: [Warning] Using a password on the command line interface can be insecure.
ERROR 1049 (42000): Unknown database 'test'
報錯
MySQL [(none)]> create database test;
Query OK, 1 row affected (0.00 sec)
[root@test ~]# mysql -uroot -ptestpassword --default-character-set=utf8 test < /tmp/test.sql
mysql: [Warning] Using a password on the command line interface can be insecure.
還原完成
[root@test ~]# mysql -uroot -p數(shù)據(jù)庫密碼 --default-character-set=utf8 數(shù)據(jù)庫 < /tmp/pousheng_b2b2c_prepub2017101.sql
mysql: [Warning] Using a password on the command line interface can be insecure.
數(shù)據(jù)庫文件都在這個目錄下:
[root@test mysql]# pwd
/data/mysql
[root@test mysql]# du -sh test
23G test
還原后的數(shù)據(jù)庫大小
感謝各位的閱讀,以上就是“Mysql5.7怎么通過mysqldump還原數(shù)據(jù)庫”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Mysql5.7怎么通過mysqldump還原數(shù)據(jù)庫這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!