I’m trying to update a table in SQL Server with Integration Services, but I don’t know how to do that
All I have is the set of data that need to be updated (with the same structure of the table that should be updated)
Is there some object to do this??
I am using OLE DB command with a store procedure to solve this problem. The store procedure have de update sentence and is calling for OLE DB command Object
But, Is there a better solution???
If your data is already on sql server use “Execute SQL Task”.
If you create data flow use “Derived column” to update values.