MySQL Sub-database sub-table backup

Source: Internet
Author: User
Tags egrep

##########MYSQL分库备份#######################################

#!/bin/bashmycmd= "mysql-uroot-pjinyan123" #定义了mysql命令MYDUMP = "mysqldump-uroot-pjinyan123" #定义了mysqldump命令DATABASE = ' $MYCMD-e ' show databases; "| Sed ' 1d ' |egrep-v "Mysql|performance_schema|information_schema" ' #获取到数据库名for database in $DATABASEdo $mydump-b $ Database|gzip >/server/backup/${database}_$ (Date +%f). Sql.gzdone




############MYSQL分表备份##########################################

#!/bin/bashmycmd= "mysql-uroot-pjinyan123" mydump= "mysqldump-uroot-pjinyan123" database= ' $MYCMD-e "Show Databases" | Sed ' 1d ' |egrep-v "Mysql|performance_schema|information_schema" ' for database in $DATABASEdo [!-d/server/backup/$ Database] && mkdir-p/server/backup/$database #创建以数据库名命名的目录TABLE = ' $MYCMD-e ' show tables from $database; "| Sed ' 1d ' #获取表名 for table in $TABLE do $MYDUMP $database $table |gzip >/server/backup/$database/${database}_${table} _$ (date +%f). sql.gz #for循环分表备份 Donedone




This article from "Yun-dimensional Life" blog, declined reproduced!

MySQL Sub-database sub-table backup

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.