0

是否可以使用 Oracle UTL_FILE 同时打开多个文件?

目前,我无法自己测试这个,因为我没有权限,也无法将它们授予自己,以便能够使用 UTL_FILE 打开和写入文件。

4

1 回答 1

2

对的,这是可能的。每次调用utl_file.fopen()utl_file.fopen_nchar()返回不同的文件描述符记录。将每个结果存储到不同的 PL/SQL 变量中,这样您就安全了。

declare
    l_file_1                utl_file.file_type;
    l_file_2                utl_file.file_type;
begin
    l_file_1 := utl_file.fopen(
        location => 'MY_INPUT_DIRECTORY',
        filename => 'my_input_file.txt',
        open_mode => 'rb'
    );
    l_file_2 := utl_file.fopen(
        location => 'MY_OUTPUT_DIRECTORY',
        filename => 'my_output_file.txt',
        open_mode => 'wb'
    );
    /*
    your multi-file handling logic comes here...
    */
    utl_file.fclose_all();
exception
    when others then
        utl_file.fclose_all();
        raise;
end;
/
于 2017-07-25T07:41:41.080 回答