Background
I have created a simple DTS Package to insert records into a table. Upon inserting the records from a tab delimited file I am picking up another field from an existing table via a join I created in the DTS Execute SQL Task object that is performing my insert.
Using SQL 2000
Problem
I have records in my tab delimited file for which there is no matching record in the joined table. The result is that the DTS Package executes with no errors and only insert records that can find a match in the joined table. However, I get no error log input indicating the records from the tab delimited file that did not get inserted.
Question
How can I log records that do not get inserted?