I would like to make UPDATE table SET columnA = variable.
How to define in Execute SQL Task variable?
In which format I should add variable?
I got "must declare the scalar variable" error when I defined following SQL Statement in "Execute SQL Task".
Update Table
SET Column1 = @[User::variablename]
Kenny_I