MySQL。一张表的负载转储

发布于 2024-11-19 05:37:03 字数 47 浏览 0 评论 0 原文

我有一个大转储 MySQL 数据库(1.3 GB)。我如何可以仅加载转储一张表?

I have a big dump MySQL database (1.3 GB). How I may load dump only one table?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雪花飘飘的天空 2024-11-26 05:37:03

如果您有权访问命令行,那么最好这样做:

mysql -u #username# -p #database# < #dump_file#

否则使用像 SQLyog 这样的 GUI 工具(提供免费社区版)。

使用网络工具几乎肯定会带来巨大的痛苦。

要提取单个表,您需要操作该文件,这里有一个很好的 Perl 脚本:) http://blog.tsheets.com/2008/tips-tricks/extract-a-single-table-from-a-mysqldump-file.html 我已成功使用过去。

If you have access to command-line, best do it that way if you can:

mysql -u #username# -p #database# < #dump_file#

Otherwise use a gui tool like SQLyog (free community edition is available).

Using web-tools will almost definatley prove a huge pain.

To extract a single table, you'll need to manipulate the file, here is a good perl script for it :) http://blog.tsheets.com/2008/tips-tricks/extract-a-single-table-from-a-mysqldump-file.html which I've used successfully in the past.

时光病人 2024-11-26 05:37:03

我建议使用 BigDump,这是一个允许您导入大数据库或其部分的脚本。

您也可以使用 MySQL Workbench,但我无法确认它的稳定性,因为该工具在我的 CentOS 环境中工作非常不稳定。

I'd recommend using BigDump, a script that allows you to import big database or its parts.

You may also use MySQL Workbench, however I cannot confirm it's stability because this tool works very unstable on my CentOS environment.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文