asd
asd

Reputation: 3

SSIS: How to reference input columns in a Component Script?

I need to reference a column in a component script to add it's value to a string builder. From there i need to send the string builder to an output column.

thanks

Upvotes: 0

Views: 6118

Answers (1)

Jeff Hornby
Jeff Hornby

Reputation: 13680

On the Script Component Editor on the Input columns tab, check off the column that you need. That will add two properties to your input buffer (usually called row unless you changed it): yourvariable and yourvariable_isnull. The value you need is in row.yourvariable.

Upvotes: 1

Related Questions