我正在使用Oracle 10g
数据库并尝试使用
sql命令运行过程.
create or replace procedure "exam" is
begin
DBMS_OUTPUT.PUT_LINE('Test');
end;
然后单击“运行”按钮.它显示:“程序创建”.
当我尝试使用以下方法执行它时:
execute exam;
然后单击“运行”按钮,显示:
ORA-00900: invalid sql statement
谢谢你的帮助.
刚刚注意到你问题中的细节.你按下运行按钮.因此,您必须使用IDE.
您不能在IDE中使用execute – 它是一个sql * plus命令.它可能在Oracle sql Developer中有效,但我不会在那里使用它;
尝试
begin
exam;
end;
原文链接:https://www.f2er.com/mssql/83641.html