如何在Oracle 10g中配置并行性?
我创建了一个并行度为 2 的表,但它似乎并没有真正工作。
I have created a table with parallelism degree 2, however it doesn't seem like it's actually working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
贴出你的SQL。您可以添加并行提示,例如:
请注意,您需要使用在查询中使用的任何别名(在本例中为 d)。通常这里使用查询的驱动表。使用explain plan查看添加此提示后是否发生变化。
Post your SQL. You can add a parallel hint, something like:
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.
看来我应该获得 oracle 的完整许可版本
its appears the i should get a full licensed version of oralcle