where 子句中使用 PLSQL 函数 - 性能问题

发布于 2024-10-02 21:48:13 字数 354 浏览 2 评论 0原文

我有一个查询,对于有限数量的 ROWNUMS 执行得很好,但一旦超过这个特定的 ROWNUM,它的执行就非常糟糕。

以下是查询:

<代码> 选择 p.col1,pv.col1 来自 tab1 p、tab2 tv、tab3 pv 其中 myFunc(pv.col1) = 1 AND tv.col1 = pv.col1 AND p.col1 = tv.col2 且行号< 4500

所有这些表都有大量(超过一百万)记录。

上面的查询执行速度非常快。

如果 ROWNUM < 5000或更多的话需要相当长的时间。

有什么方法可以提高上述查询的性能吗?

I have a query which performs quite ok for a limited number of ROWNUMS but once it exceeds this particular ROWNUM it performs very miserable.

Below is the query:


SELECT p.col1,pv.col1
FROM tab1 p, tab2 tv, tab3 pv
WHERE myFunc(pv.col1) = 1
AND tv.col1 = pv.col1
AND p.col1 = tv.col2
AND ROWNUM < 4500

All these tables have huge (more than a million) records.

The above query executes at a very decent speed.

If ROWNUM < 5000 or more then it takes quite a lot of time.

Is there any way I can improve the performance of the above query?

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

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

发布评论

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

评论(1

牵你手 2024-10-09 21:48:13

检查每个表的每个连接列上是否都有索引,然后,您可以使用功能索引,例如: http://techonthenet.com/oracle/indexes.php

Check that there is indexes on each join columns on each table, and after that, you can use functional indexes, see for example : http://techonthenet.com/oracle/indexes.php

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