oracle - FTP using UTL_FTP package fails for large files -
oracle - FTP using UTL_FTP package fails for large files -
i trying ftp file 1 unix box utl_ftp
packages using tim hall's ftp packages.
begin --pl_release_id := 'it3'; pl_release_id := release_id; l_conn:= ftp.login(sourceserver,'21',sourceuser,sourcepassword); ftp.binary(p_conn => l_conn); ftp.get ( p_conn => l_conn, p_from_file => sourcepath, p_to_dir => intermediatepath, p_to_file => file ); -- ftp.logout(l_conn); utl_tcp.close_connection(c => l_conn); exception when others utl_tcp.close_connection(c => l_conn); raise; end;
this successful files less 50 mb in size, big files, next error:
error @ line 1 ora-29260: network error: not connected ora-06512: @ "sys.utl_tcp", line 231 ora-06512: @ "sys.utl_tcp", line 460 ora-06512: @ "sys.ftp", line 301 ora-20000: 550 sendfile: broken pipe. ora-06512: @ "sys.ftp_files", line 32 ora-06512: @ line 20
i able ftp same files between database server , source server using oprating scheme ftp
command.
there ample space in partitions. tried ftp different partitions.
server os: aix unix, oracle version: oracle database 11g enterprise edition release 11.2.0.2.0 - 64bit production
oracle plsql ftp
Comments
Post a Comment