For 循环变量具有 NULL 值

发布于 2024-12-11 18:50:14 字数 539 浏览 0 评论 0原文

我有这个变量声明

counter INTEGER := 0;        /* loop counter */

然后有一个 for 循环,就像

FOR counter IN 1 .. CEIL(records / batch)
LOOP

执行点一到这里它就会抛出异常。

ORA-01086: savepoint 'SP1' never established in this session or is invalid
ORA-06512: at "MALI521.PRVSAPUPD", line 421
ORA-06502: PL/SQL: numeric or value error
ORA-06512: at line 8

现在,SP1 保存点已在 for 循环中建立。代码在进入 for 循环时失败,因为那里的计数器变量具有 NULL 值。

有什么想法吗?

请删除它。我想通了。

I have this variable declaration

counter INTEGER := 0;        /* loop counter */

And then there is for loop like

FOR counter IN 1 .. CEIL(records / batch)
LOOP

No sooner the execution point comes here it throws execption.

ORA-01086: savepoint 'SP1' never established in this session or is invalid
ORA-06512: at "MALI521.PRVSAPUPD", line 421
ORA-06502: PL/SQL: numeric or value error
ORA-06512: at line 8

Now the SP1 savepoint is established in the for loop. The code is failing the moment it comes at for loop, since the counter variable there has NULL value.

Any idea?

PLEASE DELETE IT. I FIGURED IT OUT.

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

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

发布评论

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

评论(1

孤独难免 2024-12-18 18:50:14

您确定 counter 是问题所在吗? recordsbatch 的值是多少

Are you sure counter is the problem? what are the value of records and batch

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