What does error 0xC02020C4 mean in SSIS?

I get this error with this description. Error: SSIS error code DTS_E_PRIMEOUTPUTFAILED.
The PrimeOutput method on the OLE DB Source component (1) returned error code 0xC02020C4. The component returned a failure code when the pipeline engine was called PrimeOutput (). The failure code value is determined by the component, but the error is fatal and the pipeline has stopped executing. Prior to this, error messages may appear with additional information about the failure.

+3
source share
1 answer

I believe the related error message is "Error adding a line to the stream data buffer of the stream with error code 0x {% errCode2}." It should have been in a previous log message. Of course, you will want to get% errCode2 and translate it into an error message, which should be even earlier than in the log messages. It may go back.

The easiest way is to enable all logins, start it with an error, and check the logs going backward until you find the original throwing exception.

+2
source

Source: https://habr.com/ru/post/1710197/


All Articles