Hi!
In the server I have two files
a.xml with 9k
b.xml with 100k
They have exactly the same permissions (664) and same owner/group.
The files are not corrupted.
I´m trying to copy these files. It works for a.xml, but do not for b.xml.
There is a size limit for fcopy? or what could be wrong?
begin
utl_file.fcopy('BFILE_DIR', 'a.xml', 'BFILE_DIR', 'tmp_a.xml');
utl_file.fremove('BFILE_DIR', 'tmp_a.xml');
end;
returns:
PL/SQL procedure successfully completed.
and
begin
utl_file.fcopy('BFILE_DIR', 'b.xml', 'BFILE_DIR', 'tmp_b.xml');
utl_file.fremove('BFILE_DIR', 'tmp_b.xml');
end;
returns:
ERROR at line 1:
ORA-29284: file read error
ORA-06512: at "SYS.UTL_FILE", line 262
ORA-06512: at "SYS.UTL_FILE", line 1139
ORA-06512: at line 2