Very new to SSIS so please excuse my ignorance.
I have managed to populate variables with the results of a script - example:
However, what I need to know is if it is possible to populate a package and/or task variable with the value of @var1 without the Select at the end of the code.
I only ask as some scripts we need to run use masses of variables and I dont really want to have to select them all at the end of the script.
TIA
[blue]DBomrrsm[/blue]
[blue]Software code, like laws and sausages, should never be examined in production[/blue][black] - [/black][purple]Edward Tenner[/purple]
I have managed to populate variables with the results of a script - example:
Code:
declare @var1 int
set @var1 = 1
Select @var1
However, what I need to know is if it is possible to populate a package and/or task variable with the value of @var1 without the Select at the end of the code.
I only ask as some scripts we need to run use masses of variables and I dont really want to have to select them all at the end of the script.
TIA
[blue]DBomrrsm[/blue]
[blue]Software code, like laws and sausages, should never be examined in production[/blue][black] - [/black][purple]Edward Tenner[/purple]