Oracle表碎片
如何对表进行分段,以便将其分布在多个 Oracle 9i 服务器上。
How do I fragment a table so that it is distributed over multiple oracle 9i servers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何对表进行分段,以便将其分布在多个 Oracle 9i 服务器上。
How do I fragment a table so that it is distributed over multiple oracle 9i servers.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
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.