Oracle表碎片

发布于 2024-08-25 06:38:28 字数 41 浏览 3 评论 0原文

如何对表进行分段,以便将其分布在多个 Oracle 9i 服务器上。

How do I fragment a table so that it is distributed over multiple oracle 9i servers.

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

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

发布评论

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

评论(1

七禾 2024-09-01 06:38:28

Oracle 水平可扩展性功能称为 RAC(真实应用程序)簇)。它允许服务器集群充当单个数据库。它是一种共享一切的架构:所有服务器都可以访问驻留在共享磁盘上的完整数据库。

换句话说,您不会在 Oracle 中的多个服务器上对表进行“碎片化”。您可以查看分区,它允许您将表分区到多个表空间。

分区是企业版功能,RAC 是企业版的一个选项。

Oracle horizontal scability feature is called RAC (Real Application Clusters). It allows a cluster of servers to act as a single database. It is a share-everything architecture: all servers have access to the full database that resides on shared disks.

In other words, you wouldn't "fragment" a table accross multiple servers in Oracle. You can look into partitioning, which allows you to partition a table accross several tablespaces.

Partitioning is an Entreprise Edition feature, RAC is an option of the Entreprise Edition.

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