是否可以暂时关闭Oracle集群?

发布于 2024-12-08 15:35:13 字数 52 浏览 0 评论 0原文

这样我就可以使用直接路径来加载数据?您可以暂时关闭集群直到加载数据然后重新打开所有集群吗?

So that I can use direct pathing for data loading? Can you turn off a cluster temporarily until data is loaded and then turn everything back on?

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

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

发布评论

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

评论(2

泡沫很甜 2024-12-15 15:35:13

我猜这个问题与您有关使用 SQL*Loader 直接路径的其他问题有关。我相信在 SQL*Loader 中使用直接路径的限制是表不应聚集。如果您要插入数据的表不是集群的,则无论您的 Oracle 实例是否集群,都可以使用直接路径。

因此,如果您的表没有集群,您应该能够使用直接路径加载,而无需关闭 Oracle 集群。如果您的表是集群表,那么您就完全不走运了,因为将其转换为非集群表,然后在加载数据后将其重新集群会抵消直接路径加载带来的任何性能提升。

I'm guessing this questions is related to your other question regarding using SQL*Loader direct path. I believe the restriction on using direct path in SQL*Loader is that the table should not be clustered. If the table you are inserting data is not clustered, you can use direct path whether your Oracle instance is clustered or not.

So, if your table is not clustered, you should be able to use direct path loading without turning Oracle clustering off. If your table is cluster, you are completely out of luck because converting it to a non-clustered table and then clustering it back after the data is loaded would negate any performance gains from the direct path loading.

静待花开 2024-12-15 15:35:13

您正在混合两个完全不同的概念:

- a database cluster and
- a table cluster.

一个数据库集群提供可扩展性和 HA,而另一个(表集群)则决定如何以及在何处物理存储数据。关闭 RAC 对表集群没有帮助。

You are mixing two completely different concepts:

- a database cluster and
- a table cluster.

A database cluster provides scalability and HA, while the other (table cluster) determines how and where to physically store the data. Turning off RAC will not help with table clusters.

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