How to restore a database and a table from a MySQL full database backup

How to restore a database and a table from a MySQL full database backup

In the official MySQL dump tool, how can I restore only a certain database?

Full database backup

[root@HE1 ~]# mysqldump -uroot -p --single-transaction -A --master-data=2 >dump.sql

Only restore the contents of the erp library

[root@HE1 ~]# mysql -uroot -pMANAGER erp --one-database <dump.sql

It can be seen that the main parameter used here is the --one-database abbreviated as -o, which greatly facilitates our recovery flexibility.

So how do we extract a table from the full database backup? Restoring the entire database and then restoring a table is OK for a small database, but it is very troublesome for a large database. Then we can use regular expressions for quick extraction. The specific implementation method is as follows:

Extract the table structure of table t from the full database backup

[root@HE1 ~]# sed -e'/./{H;$!d;}' -e 'x;/CREATE TABLE `t`/!d;q' dump.sql

DROP TABLE IF EXISTS `t`;

/*!40101 SET @saved_cs_client = @@character_set_client */;

/*!40101 SET character_set_client = utf8 */;

CREATE TABLE `t` (

 `id` int(10) NOT NULL AUTO_INCREMENT,

 `age` tinyint(4) NOT NULL DEFAULT '0',

 `name` varchar(30) NOT NULL DEFAULT '',

 PRIMARY KEY (`id`)

)ENGINE=InnoDBAUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

/*!40101 SETcharacter_set_client = @saved_cs_client */;

Extract the contents of the t table from the full database backup

[root@HE1 ~]# grep'INSERT INTO `t`' dump.sql

INSERT INTO `t`VALUES (0,0,''),(1,0,'aa'),(2,0,'bbb'),(3,25,'helei');

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to restore single table data using MySQL full database backup data
  • How to restore a single database or table in MySQL and possible pitfalls
  • Steps for restoring a single MySQL table
  • 3 methods to restore table structure from frm file in mysql [recommended]
  • InnoDB type MySql restore table structure and data
  • MySQL restore specified tables and libraries from full database backup example
  • Detailed explanation of MySQL single table ibd file recovery method
  • MYSQL uses .frm to restore the data table structure
  • How to use mysqldump to backup and restore specified tables
  • MySQL uses frm files and ibd files to restore table data

<<:  Vue mobile terminal realizes finger sliding effect

>>:  How to solve the problem of character set when logging in to Linux

Recommend

Navicat for MySQL 15 Registration and Activation Detailed Tutorial

1. Download Navicat for MySQL 15 https://www.navi...

mysql row column conversion sample code

1. Demand We have three tables. We need to classi...

JavaScript dynamically generates a table with row deletion function

This article example shares the specific code of ...

Simple implementation of vue drag and drop

This article mainly introduces the simple impleme...

MySQL compressed package version zip installation configuration method

There are some problems with the compressed versi...

Use of Vue filters and custom instructions

Table of contents Filters 01.What is 02. How to d...

Detailed steps for Python script self-start and scheduled start under Linux

1. Python automatically runs at startup Suppose t...

vue3.0+echarts realizes three-dimensional column chart

Preface: Vue3.0 implements echarts three-dimensio...

Vue implements the function of calling the mobile phone camera and album

This article shares the specific code of Vue to a...

Summary of several error logs about MySQL MHA setup and switching

1: masterha_check_repl replica set error replicat...

The three new indexes added in MySQL 8 are hidden, descending, and functions

Table of contents Hidden, descending, and functio...

Mac+IDEA+Tomcat configuration steps

Table of contents 1. Download 2. Installation and...

A brief analysis of the difference between ref and toRef in Vue3

1. ref is copied, the view will be updated If you...

Summary of common docker commands (recommended)

1. Summary: In general, they can be divided into ...