ERROR SSIS: el intento de agregar una fila al búfer de tareas de flujo de datos falló con el código de error 0xC0047020

Tengo problemas con el proceso SSIS (en realidad, el mismo problema ocurre para dos procesos diferentes). Entonces, estamos haciendo un trabajo ETL usando SSIS. Tenemos un proyecto de Business Intelligence que se ejecuta sin errores desde Visual Studio. Sin embargo, cuando se implementa en el servidor y se programa como un trabajo, falla con errores como:

INTRASTAT_Towar:Error: SSIS Error Code
DTS_E_PROCESSINPUTFAILED. The ProcessInput
method on component "Union All 3" (876) failed with error
code 0xC0047020 while processing input "Union All Input
2" (916). The identified component returned an error from
the ProcessInput method. The error is specific to the
component, but the error is fatal and will cause the Data
Flow task to stop running. There may be error messages
posted before this with more information about the failure.

INTRASTAT_Towar:Error: SSIS Error Code
DTS_E_PRIMEOUTPUTFAILED. The PrimeOutput
method on istat_dekl_wynik_poz SELECT returned error
code 0xC02020C4. 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.

INTRASTAT_Towar:Error: The attempt to add a row to the
Data Flow task buffer failed with error code 0xC0047020.**

Los otros errores devueltos son similares, a veces en lugar de 0xC0047020, hay un error no especificado. Los errores ocurren solo en esta tabla, que tiene muchas cosas diferentes dentro de la tarea de flujo de datos (uniones, multidifusión, división condicional). La mayoría de los otros flujos de datos solo tienen origen, destino y transformación, y no están causando ningún problema. Me han sugerido que intente manipularDefaultBufferMaxRows yDefaultBufferSize valores de propiedades para la tarea de flujo de datos, pero después de investigar un poco, no creo que resuelva el problema, ya que actualmente están en valores predeterminados. ¿Alguna sugerencia?

Respuestas a la pregunta(1)

Su respuesta a la pregunta