PL/SQL:循环遍历大表的有效方法

发布于 2024-12-10 10:53:40 字数 112 浏览 0 评论 0原文

我需要循环遍历一个包含大约 20k 行的大表。我尝试使用 CURSOR 和 BULK COLLECT 但仍然需要很长时间,大约一半才能完成。

PL/SQL 中循环遍历大数据集的有效方法是什么?

I need to loop through a large table contains around 20k of rows. I tried using CURSOR and BULK COLLECT but it still takes very long time, around half to complete.

What is an efficient way in PL/SQL to loop through the large data set.

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

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

发布评论

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

评论(1

寒冷纷飞旳雪 2024-12-17 10:53:40

通常,如果您简单地选择 20 k 行,循环会更快。可以在选择时操作结果,也可以在临时表或表变量中操作结果。

normally looping through 20 k rows will be faster if you simply select them. The result can be manipulated while selecting, or you can manipulate the result in a temporary table or a table variable.

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