I am using SSIS to make a series of complicated data exports, and I've hit a roadblock. I've populated a package variable with a recordset. I'd like to use a foreach loop to iterate through each row in the recordset. I'd like to update one of the columns in each row based on some calculations which I've done inside a script task.
Is this possible? I know in C# the foreach collection is immutable, but I don't know if SSIS works the same way.
Unfortunately, I haven't found any good examples of using the for loop construct instead, which might be a potential solution.