我可以从完整的 mysql mysqldump 文件中恢复单个表吗?

Can I restore a single table from a full mysql mysqldump file?(我可以从完整的 mysql mysqldump 文件中恢复单个表吗?)
本文介绍了我可以从完整的 mysql mysqldump 文件中恢复单个表吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有我的 mysql 数据库的 mysqldump 备份,其中包含我们所有的表,大约 440 兆.我只想从 mysqldump 恢复其中一个表的内容.这可能吗?理论上,我可以剪掉重建我想要的表格的部分,但我什至不知道如何有效地编辑这么大的文本文档.

I have a mysqldump backup of my mysql database consisting of all of our tables which is about 440 megs. I want to restore the contents of just one of the tables from the mysqldump. Is this possible? Theoretically, I could just cut out the section that rebuilds the table I want but I don't even know how to effectively edit a text document that size.

推荐答案

你可以尝试使用 sed 来只提取你想要的表.

You can try to use sed in order to extract only the table you want.

假设您的表的名称是 mytable 而文件 mysql.dump 是包含您的巨大转储的文件:

Let say the name of your table is mytable and the file mysql.dump is the file containing your huge dump:

$ sed -n -e '/CREATE TABLE.*`mytable`/,/Table structure for table/p' mysql.dump > mytable.dump

这将在文件 mytable.dump 中复制位于 CREATE TABLE mytable 和对应于下一个表的下一个 CREATE TABLE 之间的内容.

This will copy in the file mytable.dump what is located between CREATE TABLE mytable and the next CREATE TABLE corresponding to the next table.

然后您可以调整文件mytable.dump,其中包含表mytable 的结构和数据(INSERT 的列表)).

You can then adjust the file mytable.dump which contains the structure of the table mytable, and the data (a list of INSERT).

这篇关于我可以从完整的 mysql mysqldump 文件中恢复单个表吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Can#39;t Create Entity Data Model - using MySql and EF6(无法创建实体数据模型 - 使用 MySql 和 EF6)
MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
Capitalize first letter of each word, in existing table(将现有表格中每个单词的首字母大写)
How to retrieve SQL result column value using column name in Python?(如何在 Python 中使用列名检索 SQL 结果列值?)
Update row with data from another row in the same table(使用同一表中另一行的数据更新行)
Exporting results of a Mysql query to excel?(将 Mysql 查询的结果导出到 excel?)