您好,登錄后才能下訂單哦!
今天小編給大家分享一下mysql怎么恢復(fù)數(shù)據(jù)庫(kù)的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來(lái)了解一下吧。
1、備份文件中只包含表的備份,不包含庫(kù)的語(yǔ)句時(shí),導(dǎo)入時(shí)必須指定庫(kù)名,目標(biāo)庫(kù)必須存在。
可以從備份文件mysql-user.sql引入test庫(kù)。
[root@localhost ~]# mysql -u root -p test < mysql-user.sql Enter password: [root@localhost ~]# mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 17 Server version: 5.5.22-log Source distribution Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> use test; ## 驗(yàn)證導(dǎo)入結(jié)果 Database changed mysql> show tables; +----------------+ | Tables_in_test | +----------------+ | user | +----------------+ 1 row in set (0.00 sec) mysql>
2、如果備份文件包含完整的庫(kù)信息,則在進(jìn)行導(dǎo)入操作時(shí)不需要指定庫(kù)名,可以從備份文件auth.sql恢復(fù)auth庫(kù)。
[root@localhost ~]# cd /usr/local/mysql/data/ [root@localhost data]# ls auth ib_logfile0 localhost.err mongodb mysql-bin.000001 mysql-bin.000003 mysql-bin.index performance_schema ibdata1 ib_logfile1 localhost.pid mysql mysql-bin.000002 mysql-bin.000004 mysql.error.log test [root@localhost data]# mv auth /tmp/ ## 移動(dòng) auth 庫(kù),進(jìn)行模擬故障操作。 [root@localhost data]# ls -ld auth ls: 無(wú)法訪問auth: 沒有那個(gè)文件或目錄 [root@localhost data]# mysql -u root -p < ~/auth.sql ## 執(zhí)行導(dǎo)入恢復(fù)操作。 Enter password: ERROR 1050 (42S01) at line 63: Table '`auth`.`users`' already exists [root@localhost data]# ls -ld auth ## 確認(rèn)恢復(fù)后的結(jié)果。 drwx------. 2 mysql mysql 4096 8月 1 05:17 auth [root@localhost data]#
以上就是“mysql怎么恢復(fù)數(shù)據(jù)庫(kù)”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。