I am new to using Data Services. Need some guidance on how to design a data flow that essentially do a SQL update statement.
Essentially, I wish to translate the following syntax into a data flow. I have two temp tables A and B and wish to update certain property on table A by joining the two together, and output to table C at the end. I think "Map_Operation" should be used, but am uncertain what other components should also be used in the mix? such as: table comparison, etc?
Anyone wise care to shed some light on what the flow should look like? Thanks for your time.
Syntax:
UPDATE [Table A]
SET A.[Date] = B.[EndDate]
FROM [Table A] A
INNER JOIN [Table B] B
ON A.UniqueKey = B.UniqueKey