初学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站上的相关帖子.。
【编辑推荐】