返回列表 回复 发帖

请教大家一个问题

新人报道```请教大家一个问题呵呵
create or replace procedure "logfile"(p_pach  in varchar2,p_filename  in varchar2)
is
v_filehand utl_file.file_type;
v_text varchar2(90);
begin
if ( p_pach is null or p_filename is null)
then
goto to_end;
end if;
v_filehand:=utl_file.file_open(p_path,p_filename,'r');
loop
begin
utl_file.get_line(v_filehand,v_text);
exception;
when no_data_found then
exit;
end;
delete from message;
commit;
insert into message values(v_text);
commit;
end loop;
<<to_end>>
null;
end;
报错为
Warning: Procedure created with compilation errors
小弟愚笨不知道是什么原因啊!!希望指点
自强不息,努力生活,----没钱就找erp100的3号人物借
自己给自己顶一个
在线等啊```
自强不息,努力生活,----没钱就找erp100的3号人物借
角色是dba,系统权限为unlinited tablespace
自强不息,努力生活,----没钱就找erp100的3号人物借
找到错误了``````都没人顶多了个;号``痛苦死了
自强不息,努力生活,----没钱就找erp100的3号人物借
返回列表