Hi all,
I am currently trying to create an SSIS script that does the following:
1. Use two given variables to perform an SQL SELECT and get the two other variables in the row
2. Iterate over the rows that come out of the SQL script using a For Each loop.
The SQL script is as follows:
FROM ShippingLog
WHERE (Destination = ?) AND (Source = ?)
With Destination and Source configured as inputs. I have Result Set running into User::Object, with Result Name 0 assigned. The For Each loop uses a From Variable Enumerator on User::Object.
The issue I am running into that the Object changes into a String after executing the SQL task with a singular value. I need access to both values in the Data Flow task within my For Each loop. Does anyone have any idea what I can do to accomplish this? I've
been trying to google some answers, but most were either in older SSIS versions with stuff I don't seem to have in Visual Studio 2013, or had no result.
Thanks in advance for any help!