Instances of excluding certain libraries when backing up the database with mysqldump

Instances of excluding certain libraries when backing up the database with mysqldump

illustrate:

Using mysqldump –all-databases will export all libraries. But if we are doing master-slave, when dumping data from the master database, we do not need or want the information_schema and mysql libraries. If there are few databases, you can export them through /usr/local/mysql/bin/mysqldump -uroot -p --databases db1 db2 > db1db2.sql. However, if there are a lot of data, it will be troublesome to specify it in this way.

MySQL supports ignore-table, but not ignore-database. So if we want to export all libraries except information_schema and mysql, can we only specify databases one by one?

solve:

# mysql -e "show databases;" -uroot -p| grep -Ev "Database|information_schema|mysql|test" | xargs mysqldump -uroot -p --databases > mysql_dump.sql

appendix:

Appendix 1: mysqldump: Got error: 1142: SELECT,LOCK TABL command denied to user 'root'@'localhost' for table 'cond_instances' when using LOCK TABLES

In MySQL 5.5, performance_schema was added. When we perform mysqldump, the following error message will be reported:

mysqldump: Got error: 1142: SELECT,LOCK TABL command denied to user 'root'@'localhost' for table 'cond_instances' when using LOCK TABLES

We can add the parameter --skip-lock-tables to mysqldump, such as

# mysqldump -uroot -p --skip-lock-tables performance_schema > performance_schema.sql or filter out the performance_schema library

# mysql -e "show databases;" -uroot -p| grep -Ev "Database|information_schema|mysql|test|performance_schema" | xargs mysqldump -uroot -p --databases > mysql_dump.sql

The above example of excluding certain libraries when backing up the database with mysqldump is all I have to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • PHP scheduled backup MySQL and mysqldump syntax parameters detailed
  • Things to note when backing up data with mysqldump plus the -w parameter
  • Detailed explanation of mysqldump database backup parameters
  • Implementation of MySQL5.7 mysqldump backup and recovery
  • Summary of MySql import and export methods using mysqldump
  • Detailed explanation of the use of MySQL mysqldump
  • Docker uses the mysqldump command to back up and export mysql data in the project
  • MySQL data migration using MySQLdump command
  • Comparison of mydumper and mysqldump in mysql
  • Detailed explanation of Linux mysqldump exporting database, data, and table structure
  • Detailed discussion on the issue of mysqldump data export
  • A brief discussion on how to use mysqldump (MySQL database backup and recovery)
  • mysqldump parameters you may not know

<<:  Implementation example of video player based on Vue

>>:  Nginx learning how to build a file hotlink protection service example

Recommend

Bug of Chinese input garbled characters in flex program Firefox

Chinese characters cannot be input in lower versio...

Vue implements the method example of tab routing switching component

Preface This article introduces the use of vue-ro...

In-depth understanding of React Native custom routing management

Table of contents 1. Custom routing 2. Tab naviga...

Detailed explanation of cocoscreater prefab

Table of contents Prefab How to create a prefab T...

The difference between Div and table in HTML (discussed in detail in all aspects)

1: Differences in speed and loading methods The di...

Detailed explanation of memory management of MySQL InnoDB storage engine

Table of contents Storage Engine Memory Managemen...

Introduction to the B-Tree Insertion Process

In the previous article https://www.jb51.net/arti...

React implements multi-component value transfer function through conetxt

The effect of this function is similar to vue的pro...

MySQL 8.0.15 installation and configuration graphic tutorial

This article records the installation and configu...

How to use async and await correctly in JS loops

Table of contents Overview (Loop Mode - Common) D...

3 codes for automatic refresh of web pages

In fact, it is very simple to achieve this effect,...

Nginx Layer 4 Load Balancing Configuration Guide

1. Introduction to Layer 4 Load Balancing What is...

Notes on configuring multiple proxies using vue projects

In the development process of Vue project, for th...

VMware configuration hadoop to achieve pseudo-distributed graphic tutorial

1. Experimental Environment serial number project...