I have a DTS package that executes once a week and that basically exports some data from Table1 to Table2. I noticed that the job failed and when I went to the Package Designer and Executed it from there, it seemed to be running, but then Failed after (7808) rows.
The message I received was that it COULD NOT insert NULL into some primary key field, say Table2ID. I then went to Query Analyzer and did a quick SELECT statement to see what rows were going to transfer over and exactly 7808 came out as the solution.
Thus, this brings to me to think that AFTER the last row is IMPORTED into Table2, it seems that this table is expecting another row to be inserted but it is not.
Can anyone see what is occurring here? How can I go about to alleviate this? Your assistance will be greatly appreciated!
The message I received was that it COULD NOT insert NULL into some primary key field, say Table2ID. I then went to Query Analyzer and did a quick SELECT statement to see what rows were going to transfer over and exactly 7808 came out as the solution.
Thus, this brings to me to think that AFTER the last row is IMPORTED into Table2, it seems that this table is expecting another row to be inserted but it is not.
Can anyone see what is occurring here? How can I go about to alleviate this? Your assistance will be greatly appreciated!