MyISAM DB 可以存储多少数据?

发布于 2024-09-14 13:11:04 字数 45 浏览 4 评论 0原文

MyISAM DB 可以存储多少数据?
你们能说一下结核病有多少吗?

How much amount of data can be store in MyISAM DB?
Can you Guys Says How Much TB?

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

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

发布评论

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

评论(1

冷清清 2024-09-21 13:11:04

很多都在这些限制之内:
http://dev.mysql.com/doc/refman/5.1/ en/limits.html

也来自手册

http://dev.mysql.com/doc/refman/5.0/en/myisam-storage-engine.html

MyISAM 表中的行数限制为 2^32 (~4.295E+09)。如果使用 --with-big-tables 选项构建 MySQL,行限制将增加到 (2^32)^2 (1.844E+19) 行。请参见第 2.17.2 节“典型配置选项”。 Unix 和 Linux 的二进制发行版是使用此选项构建的。

只是为了好玩:每行可以有 65536 字节。这意味着您可以创建 5461 个 LONGTEXT/LONGBLOB 列,每个列能够存储 4GB 的数据。现在乘以 2^64...

但这只是严格的理论数字。

A lot within these limits:
http://dev.mysql.com/doc/refman/5.1/en/limits.html

Also from manual

http://dev.mysql.com/doc/refman/5.0/en/myisam-storage-engine.html

There is a limit of 2^32 (~4.295E+09) rows in a MyISAM table. If you build MySQL with the --with-big-tables option, the row limitation is increased to (2^32)^2 (1.844E+19) rows. See Section 2.17.2, “Typical configure Options”. Binary distributions for Unix and Linux are built with this option.

Just for fun: You can have 65536 bytes per row. This means you can create 5461 LONGTEXT/LONGBLOB columns, each able to store 4GB of data. Now multiply that times 2^64...

That's strictly theoretical number though.

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