oracle直接讀取文字檔資料

來源:互聯網
上載者:User
Technorati 標籤: oracle

oracle利用使用utl_file包
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);
/*插入資料庫操作*/
insert into test
values (v_id,v_name);
commit;
end loop;
<<to_end>;>;
null;
end loadfiledata;
================我建立表=====
3. 測試環境
首先要建立一個目標表,它用來隱藏檔中的資料:
CREATE TABLE TEST (
  autoid varchar2(10);
  name  varchar2(20));
==========================
declare
v_path varchar2(200);
v_filename varchar2(200);
begin
v_path:='F:\ ';
v_filename:='地址資訊.txt';
loadfiledata(v_path,v_filename);
end;
/
/* 由於Oracle資料庫對包建立的目錄有一個安全管理的問題,所以並不是所有的檔案目錄能夠被UTL_FILE包所訪問,
   要更新這種目錄設定,就得到init.ora裡將UTL_FILE_DIR網域設定為*,這樣UTL_FILE包就可以對所有的目錄檔案進行訪問了,UTL_FILE_DIR我設定有正確*/
=====出現錯誤呀提示!======
ORA-06510: PL/SQL: 無法處理的使用者自訂例外狀況事件
ORA-06512: 在"SYS.UTL_FILE", line 98
ORA-06512: 在"SYS.UTL_FILE", line 157
ORA-06512: 在"SYSTEM.LOADFILEDATA2", line 15
ORA-06512: 在line 1
==================
建立一個目標表,它用來隱藏檔中的資料,求救呀!不行呀!大家幫幫忙呀!若是下面的例子,把資料寫到文字檔中,可以呀!
===================
declare
file_handle utl_file.file_type;
begin
    file_handle:=utl_file.fopen('c:\temp','sss.txt','A');
    utl_file.put_line(file_handle,'寫入的資訊');
    utl_file.fclose(file_handle);
END;
========
在init.ora中加入UTL_FILE_DIR = C:\TEMP
重起後就行了

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.