I am trying to do this update in SSIS using a OLE DB COMMAND:
UPDATE
TABLE_A
SET
COLUMN_C = CONCAT(?,' ',?)
FROM
TABLE_A INNER JOIN TABLE_B ON
TABLE_A.ID = TABLE_B.ID
But when I try to map the parameters I am getting this message:
"the parameter type cannot be deduced because a single expression contains two untyped parameters"
I do not know if I am doing something wrong with this query or if it is not possible to use more than one parameter in one single sentence.
I am using VS 2010