Team ,
Can some please help me with writing an expression select statement to retrieve vairables in SSIS like we do it in SQL ?
SELECT 'Name' as Var_Name , 'Value' as Var_Value
I want the whole statement to be an SSIS Variable while 'Name' and 'Value' are real ssis variables .
Some thing like this in SSIS Expression language :
"select '" + @[User::Name] + "' +" as Name," + '"@[User::Value]"'+"as Value"
Thank You !
Rajkumar Yelugu