Hi all,
I'm a beginer with SSIS . When I executed package from SSIS , I got the warning :"SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED. The Execution method succeeded, but the number of errors raised (3) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches the number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the errors" .
Then I try to update : MaximumErrorCount to 4, but I got the warning again.
My Table test : ( It had 17 rows, this is a part of it )
Customer_code | Salary |
1A | 123 |
23A | 12 |
3A | 10 |
3A | 15 |
5D | 5 |
6T |
Conditional split : salary > 9 . When It finished, I received only 2 rows ( which is imported to SQL server) instead of 4 rows. Please help me to solve it .
Thanks you very much,
HongNgoc