UNIX oracle 10g能用utl

來源:互聯網
上載者:User
oracle|unix|資料 UNIX oracle 10g能用utl_file包讀取檔案資料嗎?
我在WINDOW 下ORACLE 8i利用utl_file可以讀取文字檔的資料,我本人測試通過,
但是在UNIX oracle 10g不行呀!出錯!
begin loadfiledata('d:\ora','1.txt'); end;

ORA-29280: 目錄路徑無效
ORA-06512: 在 "SYS.UTL_FILE", line 33
ORA-06512: 在 "SYS.UTL_FILE", line 436
ORA-06512: 在 "WTY.LOADFILEDATA", line 20
ORA-06512: 在 line 1
=====================
我的預存程序是loadfiledata:
create or replace procedure loadfiledata(p_path varchar2,p_filename varchar2) is

v_filehandle utl_file.file_type; --定義一個檔案控制代碼
v_text varchar2(100); --存放文本
v_name test.name%type;
v_id test.autoid%type;
v_firstlocation number;
v_secondlocation number;
v_totalinserted number;
begin
if (p_path is null or p_filename is null) then
goto to_end;
end if;
v_totalinserted:=0;
/*open specified file*/
v_filehandle:=utl_file.fopen(p_path,p_filename,'r'); ----開啟檔案,讀資料
loop
begin
utl_file.get_line(v_filehandle,v_text);
exception
when no_data_found then
exit;
end ;
v_firstlocation:=instr(v_text,',',1,1);---文字檔第一個','位置
v_id:=substr(v_text,1,v_firstlocation-1);---截取文字檔第一個','之前字串。
v_name:=substr(v_text,v_firstlocation+1);
/*插入資料庫操作*/
begin
insert into test
values (v_id,v_name);
if sql%rowcount=0 then
rollback;
else
commit;
end if;
exception
when others then
rollback;
end;
end loop;
<<to_end>>
utl_file.fclose(v_filehandle);
null;

end loadfiledata;
===========
loadfiledata預存程序在WINDOW ORALCE 8I運行正常,但是為什麼在UNIX ORACLE 1OG 不行,
是不是在UNIX ORACLE 1OG 對utl_file包發生變化呀!
大家幫幫忙呀!
我的個人網站http://www.kao99.com


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.