Is there a way to map to the same input column to multiple parameters in the OLEDB Command object, or to multiple destination columns in the OLE Destination object?
Do I have to make a a copy of the source column with a different name to do this? That seems so...lame.
When I need to do an update like this
Update MyTable set foo = ? where foo < ?
and use the same input column for both places, I can't seem to do it unless I a create a copy of the input column and pass two different sources columns to two different parameters.