1
votes

Error# 1

[OLE DB Source [1525]] Error: There was an error with output column "ABC" (1545) on output "OLE DB Source Output" (1535). The column status returned was: "The value could not be converted because of a potential loss of data.".

Error# 2

[OLE DB Source [1525]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "output column "ABC" (1545)" failed because error code 0xC0209072 occurred, and the error row disposition on "output column "ABC" (1545)" specifies failure on error. An error occurred on the specified object of the specified component. There may be error messages posted before this with more information about the failure.

Error# 3

[SSIS.Pipeline] Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED. The PrimeOutput method on component "OLE DB Source" (1525) returned error code 0xC0209029. The component returned a failure code when the pipeline engine called PrimeOutput(). The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing. There may be error messages posted before this with more information about the failure.

1
Nice errors. So what's the question?LukStorms
@LukStorms, my question is to get an answer for those errorsAdachew Workneh
Seems similar to this one. Are you trying to put too much text in a varchar that's to short for it?LukStorms
@LukStorms to be clear: my file source is OLE DB and my destination is csvAdachew Workneh
ABC in the database is probably > 25 characters? In the advanced editor on the Source you can tell it to ignore truncation errors. Might help you identify the problem...TDP

1 Answers

1
votes

Go into the Advanced Properties editor of your OLEDB Source, find the Output Column ABC, and change the length of it to something greater than the maximum possible length of the data of that column in the database.