oracle 数据库存储过程编译报错PLS-00103出现符号 end-of-file在需要下列之一时
在oracle數(shù)據(jù)庫創(chuàng)建可自動執(zhí)行的存儲過程中,編譯時,出現(xiàn)如下錯誤:
PLS-00103: 出現(xiàn)符號 "end-of-file"在需要下列之一時:
(
begin case declare end exception exit for goto if loop mod
null pragma raise return select update while with
<< continue close current delete fetch lock
insert open rollback savepoint set sql execute commit forall
merge pipe purge
)
存儲過程代碼:
create or replace procedure proc_update_hysj
as
begin
insert into hysj
略…
end;
原因,少了分號。在begin執(zhí)行代碼中,用封號; 表示結(jié)束!
create or replace procedure proc_update_hysj
as
begin
insert into hysj
略…
;
end;
執(zhí)行存儲過程:
BEGIN
proc_update_hysj();
END;
總結(jié)
以上是生活随笔為你收集整理的oracle 数据库存储过程编译报错PLS-00103出现符号 end-of-file在需要下列之一时的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: A ConvNet for the 20
- 下一篇: pp-human在rk3588上部署