初學Oracle時,你可能對Oracle寫文件的作用不慎了解,下面小編就提供一個寫字符串到文件中的例子。當然你也可以通過Oracle中提供的一個utl_file的包可以將字符串讀寫到文件中。下面請看具體的步驟:
1:修改INIT.ORA文件,加上UTL_FILE_PATH = <要創建文件的路徑名>
2:
- create or replace procedure sp_write_to_file(Path in varchar2, FileName in varchar2, Contents in varchar2) is
- handle utl_file.file_type;
- nrow number;
- nindex number;
- begin
- handle := utl_file.fopen(Path, FileName, ''a'');
- nrow := length(Contents) /1023;
- nindex := 0;
- if (nrow > 1)
- then
- LOOP
- if (nindex <= nrow -1)
- then
- utl_file.put(handle, substr(Contents, nindex*1023, 1023));
- utl_file.fflush(handle);
- else
- utl_file.put(handle, substr(Contents, nindex*1023, length(Contents) - nindex*1023));
- utl_file.fflush(handle);
- end if;
- if (nindex = floor(nrow))
- then
- exit;
- end if;
- nindex := nindex + 1;
- end loop;
- end if;
- utl_file.fclose(handle);
- end sp_write_to_file;
這個存儲過程實現將字符串寫到文件中的過程。注意varchar2最長好像是32767吧!
以上就Oracle寫文件編寫的一個例子,要想了解的更多相關知識,請留意51cto.com站上的相關帖子.。