6

当我尝试使用 EXECUTE 运行存储过程时,proc 运行良好。当我使用 CALL 时,我得到"ORA-06576: not a valid function or procedure name". 我通过蟾蜍直接连接。为什么我不能使用通话?

我已经尝试了这两个电话:

CALL(BPMS_OWNER.DAILY_PARTITION_NOROTATE('MIP_TEST',5,5,'MIP_TEST_',5,FALSE,TRUE));
CALL BPMS_OWNER.DAILY_PARTITION_NOROTATE('MIP_TEST',5,5,'MIP_TEST_',5,FALSE,TRUE);

我需要使用 CALL 的原因是我们的平台在将 SQL 发送到 Oracle 之前对其进行解析,无论出于何种原因,Oracle 都不支持 EXECUTE。

4

1 回答 1

19

仅仅因为需要您添加括号,例如,call call my_proc()

如果我设置一个小测试:

SQL>
SQL> create or replace procedure test is
  2  begin
  3     dbms_output.put_line('hi');
  4  end;
  5  /

Procedure created.

运行这几种不同的方式,你会看到

SQL> exec test
hi

PL/SQL procedure successfully completed.

SQL> call test;
call test
     *
ERROR at line 1:
ORA-06576: not a valid function or procedure name


SQL> call test();
hi

Call completed.

为什么需要使用call?不是execexecute而且begin ... end够了吗?


根据您的更新,问题是布尔值,它call似乎不支持。创建另一个小程序

SQL> create or replace procedure test (Pbool boolean ) is
  2  begin
  3     if Pbool then
  4        dbms_output.put_line('true');
  5     else
  6        dbms_output.put_line('false');
  7     end if;
  8  end;
  9  /

Procedure created.

SQL> show error
No errors.

并运行它证明了这一点

SQL> call test(true);
call test(true)
          *
ERROR at line 1:
ORA-06576: not a valid function or procedure name

我不太明白你为什么不能使用的原因,exec或者execute假设这些都是禁止使用的,为什么不只使用传统的匿名 PL/SQL 块?

SQL> begin
  2     test(true);
  3  end;
  4  /
true

PL/SQL procedure successfully completed.
于 2012-08-20T15:16:30.340 回答