嵌入式德比有多少容量?

发布于 2024-10-12 22:10:09 字数 30 浏览 2 评论 0原文

java derby DB 可以存储多少数据?

how much data java derby DB can store?

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

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

发布评论

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

评论(1

从来不烧饼 2024-10-19 22:10:09

这里是常见问题解答

数据库的大小限制是多少?
一个:
Java DB 将每个基表和每个索引存储在单个文件中,因此数据大小限制是其运行的 JVM 和操作系统的文件大小限制。 Derby 针对 Java 64 位接口进行编码以访问这些文件,因此内部最大表大小约为 2*64。表的数量仅受表标识符的 64 位长度限制,总表数大约限制为 2*64。实际上,磁盘空间等系统资源更可能是大小限制的来源。 Java DB 在使用超过 350 GB 原始磁盘空间且表包含超过 5 亿元组的数据库上进行了测试。

Here the FAQ

What is the size limit of a database?
A:
Java DB stores each base table and each index in a single file, so the data size limit is the file size limit of the JVM and OS on which it runs. Derby is coded against the Java 64 bit interfaces to access these files, so internally the maximum table size is approximately 2*64. The number of tables is only limited by the 64 bit length of table identifiers, for an approximate limit of 2*64 total tables. In practice, system resources such as disk space are a more likely source of size limitations. Java DB is tested on a database using over 350 GB of raw disk space with tables containing over 500 million tuples.

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