November 3, 2014 at 10:22 am
I have a SSIS 2005 package that moves .xls files from one directory to and archive folder. This works perfect, but I now need to include .txt files to this package. I cannot simply use the *.* experssion, as there will be other file formats that should not be archived. I am having issues with this. Any help would be appreciated.
In the Collection properties of the Loop editor I have tried the following...
*.xls|*.txt
*.xls*,*.txt*
*.xls,.txt
The are no problems, only solutions. --John Lennon
November 3, 2014 at 12:04 pm
This solution might help you on what you need.
Another quick option would be to use one ForEach Loop for each extension (more work, but easier).
November 3, 2014 at 12:13 pm
Easiest option is to add a FileSystemTask for each file type you need to process.
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
November 5, 2014 at 5:36 am
and if you drop them both into a sequence container within the For Each Folder loop then you can process them in parallel
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply