I m working with SSIS
I have created a package to modify a file named “abc.txt”
1 , 89
2 , 90
Now , I want to modify in SSIS itself new named “abc_new.txt”
1 + 89
2 + 90
Any comments on this , would be of help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Flat File Source -> Derived Column -> Flat File Destination
Read the data in using a flat file source (CSV). Make all your column data types as string in the connection manager.
In the derived column editor, create a new output column
outputand use a formula like[Column1] + "+" + [Column2]Write to a flat file output.