I have an OLE DB Command component in an SSIS Package that runs an update statement against a SQL table. Now, my statement initially is like:
update myTable set columnA=?, columnB=? where columnC=?
Where the three "?"'s are inputs to my component from another Conditional Split component. I can link each column name with each input parameter (the ?), so column A = param0, column B = param1.
Now, my query is more complex, I need to do;
update myTable set columnA=(param1+param2), columnB=(param2) where columnC=param1*param2
How can I do this in SSIS?