April 12, 2016 at 11:40 am
I have a package that is mostly working. All parts work when debugging from my Visual Studio workstation and when running from the server all tasks report back successful. The problem is that the file does not end up on the FTP server after the script has executed. If I disable the export part of the script, the file FTP's just fine. If I run the export to a different filename and then export the existing file it all works. I have even tried adding rename and copy tasks with no luck. If the file to be Ftp'd is the one being created it will not put the file on the server. Best I can tell, the file does exist when the FTP task runs. How can I see from the execution on the server a log of the transaction between the SSIS server and the FTP server?
Any other suggestions are welcomed as well.
April 12, 2016 at 2:27 pm
Putting a delay in after the file is create solved the issue.
April 12, 2016 at 2:46 pm
michael.mcclure (4/12/2016)
Putting a delay in after the file is create solved the issue.
If you're not satisfied with this slightly inelegant solution, you could try putting all of your file-creation stuff into a SEQUENCE container and putting the FTP task after the container.
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
April 12, 2016 at 2:55 pm
Thanks Phil,
I am new to SSIS and did not know about the sequence container. I'll check it out.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply