Post a reply

Before posting, please read how to report bug or request support effectively.

Bug reports without an attached log file are usually useless.

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

martin

Re: Issue with time for the large file size transfer

I cannot suggest more than what is in the FAQ already.
ipesin

Issue with time for the large file size transfer

I have to transfer 33gb (oracle dmp file) from one network box to another and it takes an extremely long time. So far I was able to transfer 19Gb that took more than 8 hours.
I'm trying to execute script that run by the .bat file. In the forum I found that SFTP takes speed Generally slowest (encryption and necessity to wait for packet confirmations). https://winscp.net/eng/docs/faq_slow
Are there any way to improve transfer performance? We are using 4.2.7(Build 758) version. In order to keep script running after the initialization I added -timeout=900 parameter

Following is the script example which is executed from the "host_server":
---------------------------------------------------------------------------------------
option batch on
open user:password@ipaddress -timeout=900
get 33GB_FILE.DMP "\\host_server\d$\Data\33GB_FILE.DMP"
close
exit