在 mysql 中使用 SOURCE 选择引擎

发布于 2024-09-29 05:10:11 字数 87 浏览 3 评论 0原文

在mysql中使用SOURCE导入时如何将引擎更改为MyISAM?目前默认为 InnoDB。对于 5GB 的 .sql 文件,引擎之间的导入速度会有什么差异吗?

How do I change the engine to MyISAM when using a SOURCE import in mysql? It currently defaults to InnoDB. would there be any difference between the speed of the import between the engines for say a 5gb .sql file?

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

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

发布评论

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

评论(1

心不设防 2024-10-06 05:10:11

在 mysql 中使用 SOURCE 导入时如何将引擎更改为 MyISAM?

那么你只能编辑源文件。如果为CREATE TABLE显式指定了一个引擎(我敢打赌是这样),那么它是唯一的解决方案。

目前默认为 InnoDB。对于 5GB 的 .sql 文件,引擎之间的导入速度会有什么差异吗?

导入到不同存储引擎的速度应该没有显着差异,但如果删除所有索引并在导入所有数据后立即重新创建它们,则可以节省 CPU 周期。

How do I change the engine to MyISAM when using a SOURCE import in mysql?

You could only edit a source file then. If an engine is explicitly specified for CREATE TABLE (and I bet it is) then it is the only solution.

It currently defaults to InnoDB. would there be any difference between the speed of the import between the engines for say a 5gb .sql file?

There should be no significant difference between speed of import to different storage engines, but you could save CPU cycles if you remove all indexes and recreate them right after you have imported all the data.

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