Hi,
Your screenshot shows the error happen on the Data Target (Insert) node. This node has a parameter that allows it to ignore a certain number of errors before it actually fails. This number is set to 500 in your job.
That means, the job ignored 499 insert errors, but when reaching 500, which is the maximum it is allowed to ignore, it failed.
You might want to check in your database log what these errors are. If it's ok for your job to ignore it, you can set the MAX_ERROR_COUNT value to something higher than 500. If not, you can set it to 0 so it fails at the very first error.
Hope this helps.
Audrey
... View more