SSIS - Updating a table with a OLE DB Command
问题 I need to translate the next SQL Query in SSIS: (Each table belong to a different source - SQL Server & ORACLE) update A set A.col1 = B.col1 A.col2 = B.col1 from table A inner join table B B on A.col3 = Col3 where A.col4 = value 1 and A.col5 = value2 and B.col4 = value 3; As you can see, source and destination corresponds to the same source: table A. This is the work flow I have created. After the conditional split I have used a Derived Column in order to copy the column B.Col1 to use it on