When converting data during the transfer,I move all rejected (i.e. failed) conversions into a reject table. However, I only get an entry for the FIRST error:
Example source data:
Name | Salary | Zipcode
------------------------
Paul | 12000 | 90210
Ringo| 5000 | 12345
Peter| hundred | London
Tina | 12345 | London
For row 3 I only get an error that the 2nd column is wrong, the 3rd column is not listed, ergo my rejects table only has 2 entries.
Is there a way to get a listing for each error?
Currently I would simply take the rejects table and run a script that does what I want over it, thus getting a "proper" logfile, though I would prefer to have something within SSIS.
What would be the best way to do this?