SSIS ERROR: The attempt to add a row to the Data Flow task buffer failed with error code 0xC0047020

40,746

Well, I managed to work the issue with my packages. I was using 2012 SSIS version, but I executed packages in 32 bit environment in BIDS. The server acctually executed in 64 bit and for some projects that was the problem. One checkbox in step properties to make it execute in 32 bit env and I solved the problem we have been fighting for weeks.

Share:
40,746
L.J.
Author by

L.J.

Updated on March 04, 2021

Comments

  • L.J.
    L.J. about 3 years

    I have problems with SSIS process(acctually the same problem occurs for two different processes). So, we are doing some ETL work using SSIS. We have Business Intelligence project that executes without errors from Visual Studio. However when its deployed on the server and scheduled as a job it fails with errors like:

    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.**
    

    The other returned errors are similar, sometimes instead of 0xC0047020, there is unspecified error. Errors occur only on this one table, that has a lot of different stuff inside data flow task(unions, multicasts, conditional split). Most other data flows have just source, dest and transformation, and they are not causing any problems. I've been suggested to try manipulating DefaultBufferMaxRows and DefaultBufferSize properties values for the data flow task, but after doing some research I dont belive that it will solve the issue, as they are currently put on default values. Any suggestions?