I've created an SSIS package with a dataflow.
The oledb source uses a variable with a sql statement.
Following the oledb source, there is a derived column transformation that converts the data. If that breaks, it is redirected to a log table, if it doesnt break it goes to the oledb destination table.
Question: Is there a way I can determine what the source and destination tables are when the conversion breaks, for logging purposes?
Note: The source table is in the variable used by oledb source, and the destination is selected in the oledb destination task.
Thanks for your time.