I need to do something like this in SSIS:
From one SQL table I need to get some id values, I am using a simple sql query:
Select ID from Identifier where value is not null.
I've got this result:
As a final result I need to generate and set a variable in SSIS with the final value:
@var = '198','120','ACP','120','PQU'
Which I need to use later in a odbc expression.
Is this possible in SSIS?
Just to clarify: The image is just a little example of what I can get from the first part of the process. I mean, the number of ID that I need is unknown.