Scenario Yesterday the system automatically backed up all table data of a certain database, named dbAll.sql.gz. The file is large (e.g. 40G) Today, we found a problem with a piece of data in tableA, and we need to check the changes of two records. The data of tableA needs to be retrieved from dbAll in order to compare the record. Operational Scheme 1. Import dbAll.sql.gz into the database to be compared (temporary database), and then compare tableA. Not recommended because the amount of data is too large and it is time-consuming 2. After decompressing dbAll.sql.gz, use Java code to read the CREATE statements and INSERT statements about tableA in dbAll.sql into the file tableA.sql, and then import tableA.sql into the temporary database for comparison. 3. See (not tried): mysqldump exports the entire database alldb.sql. Can I only import one table when importing? Method 1:
Method 2:
Method 3:
Method 3: Export the data of the test1 and test2 tables in the src_bake_db.sql.gz compressed file to targetdb.sql Supplementary knowledge: The mysql command line exports the first 100 records of all tables in the entire database As shown below:
Just run it directly on the command line without logging into the mysql client.
phpmyadmin export php script:
The above MySQL implementation of importing only a specified table from the sql file of exported data is all the content that the editor shares 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:
|
<<: Vue implements small form validation function
>>: Detailed explanation of the Docker deployment tutorial for Jenkins beginners
Copy code The code is as follows: @charset "...
This article shares the specific code of JavaScri...
Origin: A few days ago, a tester sent a requireme...
Implementing process analysis (1) How to call rep...
Screen Introduction Screen is a free software dev...
1. Install and use Docer CE This article takes Ce...
Responsive design is to perform corresponding ope...
//Default protocol /The use of the default protoc...
What is DNS The full name of DNS is Domain Name S...
Copy code The code is as follows: jQuery.cookie =...
I once promised that I would keep writing until pe...
Provide login and obtain user information data in...
1. Element time selection submission format conve...
Effect picture: Implementation code: <template...
Introduction Recently, I needed to make a barrage...