How to filter out certain libraries during mysql full backup

How to filter out certain libraries during mysql full backup

Use the --all-database parameter when performing a full backup of MySQL

for example:

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

When importing data, you can first log in to the MySQL database and use source /root/all.sql to import.

question:

I want to filter out certain libraries when backing up the database with mysqldump.

In this case, you cannot use --all-database when backing up mysqldump, but use --database instead .

As follows: When backing up the database , filter out the information_schema, mysql, test, and jkhw_db libraries

[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)

How to do it:

[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:

The above method of filtering out certain libraries during a complete MySQL backup is all I have to share with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL complete collapse: detailed explanation of query filter conditions
  • Detailed explanation of MySQL single table query operation examples [syntax, constraints, grouping, aggregation, filtering, sorting, etc.]
  • Detailed explanation of count without filter conditions in MySQL
  • Method for implementing multi-field filtering in Mysql database
  • Summary of MySQL injection bypass filtering techniques
  • MYSQL Must-know Reading Notes Chapter 8: Using Wildcards for Filtering
  • MYSQL Must Know Reading Notes Chapter 7 Data Filtering
  • MYSQL Must Know Reading Notes Chapter 6 Filtering Data
  • MYSQL uses regular expressions to filter data
  • Python connects to MySQL and uses fetchall() method to filter special characters
  • Python implements MySQL single quote string filtering method
  • How to solve mysql replication filter duplication
  • How to dynamically modify the replication filter in mysql

<<:  JavaScript Dom implements the principle and example of carousel

>>:  Detailed explanation of configuring keepalived log to another path in centos7

Recommend

MySQL 5.7.17 installation and configuration method graphic tutorial (windows10)

MySQL 5.7.17 installation and configuration metho...

Quick understanding and example application of Vuex state machine

Table of contents 1. Quick understanding of conce...

MySQL method steps to determine whether it is a subset

Table of contents 1. Problem 2. Solution Option 1...

Steps to run ASP.NET Core in Docker container

There are too much knowledge to learn recently, a...

Tutorial on installing mysql5.7.18 on windows10

This tutorial shares the installation and configu...

Example code for implementing a hollow mask layer with CSS

Contents of this article: Page hollow mask layer,...

Detailed explanation of Grid layout and Flex layout of display in CSS3

Gird layout has some similarities with Flex layou...

Install Python 3.6 on Linux and avoid pitfalls

Installation of Python 3 1. Install dependent env...

Singleton design pattern in JavaScript

Table of contents 1. What is a design pattern? 2....

The process of installing Docker in Linux system

In this blog, I will walk you through the process...

How to use and limit props in react

The props of the component (props is an object) F...

Div nested html without iframe

Recently, when doing homework, I needed to nest a ...

Solution for creating multiple databases when Docker starts PostgreSQL

1 Introduction In the article "Start Postgre...

Usage and best practice guide for watch in Vue3

Table of contents Preface🌟 1. API Introduction 2....