Please I have created an SSIS Package and make four tasks:
LoadCustomerScript: to populate my customer dimension Located in LightAdventureWorksDW2017 (created by me)
--Product data flow: contains two tasks extract data from the product dimension of AdventureWorksDW2017 sample and load data to load the data to the product dimension of LightAdventureWorksDW2017
--Date data flow: contains two tasks extract data from the date dimension ofAdventureWorksDW2017 sample and load data to load the data to the date dimension of LightAdventureWorksDW2017
--InternetSales data flow
when I run the sequence container the three tasks run successfully (customer, product and date data flows) but the internet sales don't and I don't know why
and am getting those errors :
-- [Load InternetSale Data [38]] 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 11.0" Hresult: 0x80004005 Description: "The statement has been terminated.".
An OLE DB record is available. Source: "Microsoft SQL Server Native Client 11.0" Hresult: 0x80004005 Description: "The INSERT statement conflicted with the FOREIGN KEY constraint "FK_InternetSales_Dates". The conflict occurred in database "LIGHTADVENTUREWORKSDW", table "dbo.Dates", column 'DateKey'.".
-- [Load InternetSale Data [38]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "Load InternetSale Data.Inputs[OLE DB Destination Input]" failed because error code 0xC020907B occurred, and the error row disposition on "Load InternetSale Data.Inputs[OLE DB Destination Input]" 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 "Load InternetSale Data" (38) failed with error code 0xC0209029 while processing input "OLE DB Destination Input" (51). 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.
-- [Extract InternetSale Data [2]] 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 Extract InternetSale Data 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.
User contributions licensed under CC BY-SA 3.0