create or replace procedure "exam" is begin DBMS_OUTPUT.PUT_LINE('Test'); end;
然后单击“运行”按钮.它显示:“程序创建”.
当我尝试使用以下方法执行它时:
execute exam;
然后单击“运行”按钮,显示:
ORA-00900: invalid sql statement
谢谢你的帮助.
您不能在IDE中使用execute – 它是一个sql * plus命令.它可能在Oracle sql Developer中有效,但我不会在那里使用它;
尝试
begin exam; end;