Error for Flat file to OLE DB Destination

  • Hello,

    I have a problem, in my package SSIS, I have a Flat File in source, and I want to transfert data to OLE Destination.

    This is my error message :

    [OLE DB Destination [1499]] Error: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005.

    An OLE DB record is available. Source: "Microsoft SQL Server Native Client 10.0" Hresult: 0x80004005 Description: "The statement has been terminated.".

    An OLE DB record is available. Source: "Microsoft SQL Server Native Client 10.0" Hresult: 0x80004005 Description: "Cannot insert the value NULL into column 'Type_professionnels', table 'HealthCare_Ref.dbo.Individu'; column does not allow nulls. INSERT fails.".

    [OLE DB Destination [1499]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "input "OLE DB Destination Input" (1512)" failed because error code 0xC020907B occurred, and the error row disposition on "input "OLE DB Destination Input" (1512)" 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.

    [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component "OLE DB Destination" (1499) failed with error code 0xC0209029 while processing input "OLE DB Destination Input" (1512). 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.

    [Exerce source [729]] Error: The attempt to add a row to the Data Flow task buffer failed with error code 0xC0047020.

    [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED. The PrimeOutput method on component "Exerce source" (729) 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.

    Thanks

  • What is the definition of Individu? does it allow nulls in the mentioned column?

  • What do you want to know about Individu?

    This is the design of my table Individu

  • The error is stating "Cannot insert the value NULL into column 'Type_professionnels', table 'HealthCare_Ref.dbo.Individu'; column does not allow nulls."

    Your table definition confirms this - the Type_professionels column does not permit NULLs. Therefore, you must have NULLs in your data flow for this column.

    You need to either alter the table definition, if this is actually a valid data condition - or you need to alter your data flow to detect and repair the NULL values in Type_professionels.

    Todd McDermid - SQL Server MVP, MCTS (SQL 08 BI), MCSD.Net
    My Blog - Dimension Merge SCD Component for SSIS - SSIS Community Tasks and Components

  • Oh sorry, in SQL Server Developement Studio I don't show the complete error.

    I show now, thanks you

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply