DTS_E_PRIMEOUTPUTFAILED with error code 0xC0202091 when loading flat file

ssis

I get an error message when I try run my SSIS Package the error is:

[Flat File Source [1]] Error: The column delimiter for column "Column
8" was not found.

[Flat File Source [1]] Error: An error occurred while skipping data
rows.

[SSIS.Pipeline] Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED. The PrimeOutput method on component "Flat File Source" (1) returned
error code 0xC0202091. 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.

Most of the csv files load no problem but a handful of csv files don't and prior to that the package has been working fine for years.

Best Answer

Encountered this error too, turned out that its skipping data rows because my CSV file has missing columns. Try checking if the columns in your file is correct.

Related Topic