真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mysql數(shù)據(jù)庫命令大全---完全備份和恢復(fù)

數(shù)據(jù)完全備份

MySQLdump -uroot -pabc123 --databases school > /opt/school.sql

創(chuàng)新互聯(lián)公司成立于2013年,我們提供高端重慶網(wǎng)站建設(shè)、成都網(wǎng)站制作公司成都網(wǎng)站設(shè)計(jì)公司、網(wǎng)站定制、成都營銷網(wǎng)站建設(shè)、小程序制作、微信公眾號(hào)開發(fā)、seo優(yōu)化服務(wù),提供專業(yè)營銷思路、內(nèi)容策劃、視覺設(shè)計(jì)、程序開發(fā)來完成項(xiàng)目落地,為成都圍欄護(hù)欄企業(yè)提供源源不斷的流量和訂單咨詢。

刪除庫

mysql> drop database school;

查看數(shù)據(jù)庫

mysql> show databases;

+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+

還原數(shù)據(jù)庫

mysql> source /opt/school.sql
mysql> show databases; #查看數(shù)據(jù)庫確認(rèn)
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| school |
| sys |
+--------------------+

方法二:此方法需要重新創(chuàng)建庫名

mysqldump -uroot -pabc123 school > /opt/school.sql
mysql> create database school;
mysql> source /opt/school.sql;
mysql> show tables;
+------------------+
| Tables_in_school |
+------------------+
| info |
+------------------+
1 row in set (0.00 sec)

mysql> select * from info;
+----+------+-------+
| id | name | score |
+----+------+-------+
| 1 | ll | 88 |
| 2 | tl | 68 |
| 3 | ww | 44 |
| 4 | pw | 55 |
+----+------+-------+

方法三:不進(jìn)入mysql數(shù)據(jù)庫恢復(fù)數(shù)據(jù)

恢復(fù)數(shù)據(jù)

mysql -uroot -pabc123 < /opt/school.sql

數(shù)據(jù)表備份

mysqldump -uroot -pabc123 school info \> /opt/info.sql

刪除表格(模擬數(shù)據(jù)表損壞)

mysql> drop table info;

還原備份數(shù)據(jù)表

mysql\> source /opt/info.sql

查看表格

mysql> show tables;
+------------------+
| Tables_in_school |
+------------------+
| info |
+------------------+

與數(shù)據(jù)庫一樣,也可以不登錄mysql恢復(fù)數(shù)據(jù)表
mysql -uroot -pabc123 school < /opt/info.sql

總結(jié):

無論是恢復(fù)數(shù)據(jù)庫還是恢復(fù)數(shù)據(jù)表,都應(yīng)該先查看一下備份文件,看里面有無自動(dòng)創(chuàng)建數(shù)據(jù)庫或數(shù)據(jù)表的命令,再考慮是否在備份時(shí)創(chuàng)建數(shù)據(jù)庫和數(shù)據(jù)表!

查看備份文件

vim school.sql

mysql數(shù)據(jù)庫命令大全---完全備份和恢復(fù)


分享名稱:mysql數(shù)據(jù)庫命令大全---完全備份和恢復(fù)
文章URL:http://weahome.cn/article/jsgcpc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部