grittyminder
IS-IT--Management
I have a script that is atempting to read all the data from a very, very large file on a remote server. For whatever reason, the script fails, randomly, typically with either of the following two errors: "The semaphore timeout period has expired" or "The specified network name is no longer available." When the script does complete successfully it takes anywhere from 5 minutes to to two hours (depending on how long the file is). I'd attributed the script failure to 1) tumultuous network traffic and 2) the old-ness of the box that the script is running. But now I'm wondering if I'm doing something wrong? Actually, I'm not really sure what I'm asking... I need help but I'm not really sure what. I thought that reading directly from the remote file was probably bad, so I tried copying the file locally THEN reading it. But the problem then is that the copy function takes FOREVER to complete when the file is very, very large, (and, actually, now that I think of it usually doesn't copy over at all; it just fails). Oh yeah, the vbscript copyFile function didn't even work for me (the function call just hangs) so I was calling xcopy from inside the script instead. The script in its current form attempts to xcopy a file locally 3 times then quits if unsuccessful. I would say that 90% of the time the script is unsuccessful and quits. There has to be a better way to do this. Maybe there is a better copy function? Maybe I'm approaching the problem wrong? Any ideas?