如何在Oracle 10g中配置并行性?

发布于 2024-10-13 09:36:06 字数 35 浏览 3 评论 0原文

我创建了一个并行度为 2 的表,但它似乎并没有真正工作。

I have created a table with parallelism degree 2, however it doesn't seem like it's actually working.

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

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

发布评论

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

评论(2

久随 2024-10-20 09:36:06

贴出你的SQL。您可以添加并行提示,例如:

select /*+ parallel(d, 2) */
from someTable d
where blah;

请注意,您需要使用在查询中使用的任何别名(在本例中为 d)。通常这里使用查询的驱动表。使用explain plan查看添加此提示后是否发生变化。

Post your SQL. You can add a parallel hint, something like:

select /*+ parallel(d, 2) */
from someTable d
where blah;

Note that you need to use any aliases you used in the query (d in this case). Typically the driving table of the query is used here. Use explain plan to see if it changes after adding this hint.

泪是无色的血 2024-10-20 09:36:06

看来我应该获得 oracle 的完整许可版本

its appears the i should get a full licensed version of oralcle

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