utl_file.file_type使用

yhj20041128001發表於2013-12-30

測試的過程如下:

  1. drop directory MTR_UTL_FILE_DIR ;
  2. create or replace directory MTR_UTL_FILE_DIR as '/tmp';
  3. grant read,write on directory MTR_UTL_FILE_DIR to apps;
  4. select * from dba_directories;

1.建立檔案

  1. declare
  2.      fhandle utl_file.file_type;
  3.    begin
  4.      fhandle := utl_file.fopen('MTR_UTL_FILE_DIR', 'MIS_OUT_F1_NO.txt', 'w');
  5.       utl_file.put_line(fhandle , '123 \'||'誒砂傑芝灰膛次 '||'mm');
  6.       utl_file.put_line(fhandle , '456 '||'誒砂傑芝灰 '||'mm');
  7.       utl_file.fclose(fhandle);
  8.     end;
  9. /
2.開啟檔案

  1. declare
  2.       fhandle utl_file.file_type;
  3.       fp_buffer varchar2(4000);
  4.     begin
  5.       fhandle := utl_file.fopen ('MTR_UTL_FILE_DIR','MIS_OUT_F1_NO.txt', 'R');
  6.     
  7.       utl_file.get_line (fhandle , fp_buffer );
  8.       dbms_output.put_line(fp_buffer );
  9.       utl_file.get_line (fhandle , fp_buffer );
  10.     dbms_output.put_line(fp_buffer );
  11.     utl_file.fclose(fhandle);
  12.    end;
  13.    /

3.在作業系統中檢查該檔案。
[root@szodbd01 tmp]# cat MIS_OUT_F1_NO.txt 
123   璇剁犳璋瓔?    mm
456   璇剁犳璋    mm
[root@szodbd01 tmp]# 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23757700/viewspace-1065603/,如需轉載,請註明出處,否則將追究法律責任。

相關文章