Reputation: 450
I have business scenario as
source files (text files) comes to load into SQL database so I used the flat file connection manager as normal process.
My requirement as, we are getting source files with qualifier (") so we used the text qualifier property in the connection manager.
For the same set of files we are getting without text qualifiers in the files there SSIS packages failing.
Here I need information on SSIS package handle the files
Could we implement the both scenarios in the same package.
thanks
prav
Upvotes: 2
Views: 2119
Reputation: 3922
You could pre-process the files using something like powershell. There's an article here talking about how to implement a file wide replace. Of course if you're comfortable with writing VB.NET you could implement the same thing in a scripting task in the package.
Upvotes: 1