Details (this is specific to SSIS) : There are two database servers : A & B I have to fetch list of few values from database A (like 1,2,3,4,5 in one column) and pass it in the "IN" clause to a command that will run on database B (like Select something from B.Table where column in (1,2,3,4,5)).
The "Execute SQl task" result set is mapped to an object variable X, which cannot be passed directly as a parameter to the second command.
What are the possible solutions to this?