国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 數(shù)據(jù)庫(kù) > MySQL > 正文

mysql完整備份時(shí)過(guò)濾掉某些庫(kù)的方法

2024-07-24 12:52:09
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

mysql進(jìn)行完整備份時(shí)使用--all-database參數(shù)

比如:

#mysqldump -u root -h localhost -p --all-database > /root/all.sql

數(shù)據(jù)導(dǎo)入的時(shí)候,可以先登陸mysql數(shù)據(jù)庫(kù)中,使用source /root/all.sql進(jìn)行導(dǎo)入。

問(wèn)題:

想要在mysqldump備份數(shù)據(jù)庫(kù)的時(shí)候,過(guò)濾掉某些庫(kù)。

這種情況mysqldump備份的時(shí)候就不能使用--all-database了,而是使用--database。

如下:備份數(shù)據(jù)庫(kù)的時(shí)候過(guò)濾掉information_schema、mysql 、test和jkhw_db庫(kù)

[root@fangfull-backup ~]# mysql -uroot -p -e "show databases"
Enter password:

+--------------------+
| Database |
+--------------------+
| information_schema |
| hqsb_db               |
| jkhw_db             |
| mysql                 |
| test                    |
| tech_db             |
| hqtime_o2o_db |
| hq_o2o_db        |
| hqtime_o2o_db_new |
+--------------------+
9 rows in set (0.00 sec)

操作方法:

[root@fangfull-backup ~]# mysql -uroot -p -e "show databases"|grep -Ev "Database|information_schema|mysql|test|jkhw_db"
Enter password:
hqsb_db
tech_db
hqtime_o2o_db
hq_o2o_db
hqtime_o2o_db_new
[root@fangfull-backup ~]# mysql -uroot -p -e "show databases"|grep -Ev "Database|information_schema|mysql|test|jkhw_db"|xargs
Enter password:
hqsb_db tech_db hqtime_o2o_db hq_o2o_db hqtime_o2o_db_new
[root@fangfull-backup ~]# mysql -uroot -p -e "show databases"|grep -Ev "Database|information_schema|mysql|test|jkhw_db"|xargs mysqldump -uroot -p --databases > mysql_dump.sql
Enter password:

以上這篇mysql完整備份時(shí)過(guò)濾掉某些庫(kù)的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持錯(cuò)新站長(zhǎng)站。

您可能感興趣的文章:

mysql 復(fù)制過(guò)濾重復(fù)如何解決mysql備份的三種方式詳解Mysql 數(shù)據(jù)庫(kù)常用備份方法和注意事項(xiàng)簡(jiǎn)單的MySQL備份與還原方法分享史上最全的MySQL備份方法
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 昌邑市| 筠连县| 庐江县| 望奎县| 于田县| 伊吾县| 塔河县| 石景山区| 孝昌县| 喀什市| 多伦县| 雅安市| 津市市| 田东县| 邵东县| 天柱县| 行唐县| 河津市| 勐海县| 赤水市| 怀远县| 韩城市| 昭平县| 中卫市| 涡阳县| 泗洪县| 汉寿县| 宁都县| 盱眙县| 崇仁县| 大方县| 南华县| 日照市| 南昌市| 穆棱市| 东乡| 深州市| 洛阳市| 渝中区| 焉耆| 都江堰市|