InnoDB type MySql restore table structure and data

InnoDB type MySql restore table structure and data

Prerequisite: Save the .frm and .ibd files that need to restore the database

Condition: InnoDB type

Recover table structure

1. Create a new database - create a new table with the same table name and number of columns as the database to be restored
2. Stop the mysql server service mysql stop ,
3. Add innodb_force_recovery = 6 in /usr/local/mysql/my.cnf
4. Overwrite the .frm format file of the table to be restored with the .frm format file in the /usr/local/mysql/data/ database
5. Start the mysql server service mysql start
6. Stop the database service service mysql stop and comment out innodb_force_recovery = 6 in my.cnf
7. Start the mysql server service mysql start

Recover Data

1. Restore the table structure first
2. Execute alter table `user` discard tablespace; After execution, the user.ibd file in the database directory disappears.
3. Put your backed up ibd to the disappeared user.ibd file
4. Add permissions to this file: chown -R mysql:mysql data The owner is mysql
5. Execute alter table `user` import tablespace; After execution, the table data can be read, but some information in the system table, such as the number of table rows, will be lost.

Note: If you encounter a foreign key constraint, add SET FOREIGN_KEY_CHECKS = 0 before the statement; remember to change it to 1 after completion

You may also be interested in:
  • Performance comparison test of MySQL's two table storage structures MyISAM and InnoDB
  • Detailed explanation of the index and storage structure of the MySQL InnoDB engine
  • Detailed explanation of MySQL Innodb storage structure and storage of Null values
  • Detailed explanation of the data page structure of MySQL's InnoDB storage engine
  • MySQL InnoDB memory structure details

<<:  JS ES6 asynchronous solution

>>:  How to configure pseudo-static and client-adaptive Nginx

Recommend

Problems and solutions encountered when installing mininet on Ubuntu 16.04.4LTS

Mininet Mininet is a lightweight software defined...

HTML design pattern daily study notes

HTML Design Pattern Study Notes This week I mainl...

Analysis of Docker's method for creating local images

The so-called container actually creates a readab...

MySQL not null constraint case explanation

Table of contents Set a not null constraint when ...

Perfect solution to Docker Alpine image time zone problem

Recently, when I was using Docker to deploy a Jav...

Example of using supervisor to manage nginx+tomcat containers

need: Use docker to start nginx + tomcat dual pro...

Linux common basic commands and usage

This article uses examples to illustrate common b...

How to create a flame effect using CSS

The main text starts below. 123WORDPRESS.COM Down...

A brief analysis of different ways to configure static IP addresses in RHEL8

While working on a Linux server, assigning static...

WeChat applet realizes taking photos and selecting pictures from albums

This article shares the specific code for WeChat ...

Analyze the problem of pulling down the Oracle 11g image configuration in Docker

1. Pull the image docker pull registry.cn-hangzho...

Practical experience of implementing nginx to forward requests based on URL

Preface Because this is a distributed file system...

Pure CSS to achieve input box placeholder animation and input verification

For more exciting content, please visit https://g...