I am new to SSIS. I have a problem. i get data from two different data sources. I am able to merge them using Merge Component and feed the output to a Script component where i validate data and move it to the destination. Every thing is working fine. I want it to work when we add some extra columns in any sources.

The problem is when i add extra columns in source, i should add the input columns in the script component(check the ckeck boxes in Input Columns). Is there any way to do this?

Plz help

link|improve this question

0% accept rate
feedback

1 Answer

Try adding the new column to the source, open the package and then follow the flow through. You will have to go into subsequent controls including the merge control to refresh the data with this new field.

SSIS will prompt you with the exclamation mark at each stage where a refresh is mandatory(such as source control), although you will have to manually step through the flow components (such as merge) where a column output is optional.

For example, I added cost as a new column to the basic ole db source below data flow example

and after updating the source control, I have the opportunity to add it to the script component as you mention - but it is not mandatory for me to do so

script option

the new field should be available in the sort component, even if its not used within the script control. You will however need to tick the field as a pass through on the sort control to get it into the merge component

sort control fields

link|improve this answer
Thanks for the response Daryl. – user922330 Aug 31 '11 at 22:33
no problem, let me know if you have hit any issues... – Daryl Wenman-Bateson Aug 31 '11 at 22:42
Thanks for the response Daryl. The problem is when i add a new column in the Source i am gettin it as output from the source. When i feed the output as an input to the Script Component, the newly added column checkbox is not checked in the input columns of the script component. which does not allow my newly added column to move to the destination. – user922330 Aug 31 '11 at 22:44
You should not have to add it as an input to the script component, unless you need to manipulate it with script. I will expand my answer with an example – Daryl Wenman-Bateson Aug 31 '11 at 22:57
Thanks Daryl. I am validating all the fields in the Script component. So whenever a new column is added to the Scouce it should be checked as input to the Script component. Is there any way to do that? We cannot modify and deploy the Package eachtime a new column is added.. – user922330 Sep 1 '11 at 15:28
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.