I'm trying to import an excel sheet into an already existing database table. I'm using the SSIS to do this as the "import/export wizard" has already failed me.
I keep getting these errors:
-[OLE DB Destination [77]] 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: "Unspecified error".
-[OLE DB Destination [77]] Error: There was an error with OLE DB Destination.Inputs[OLE DB Destination Input].Columns[ConvReturnsPct] on OLE DB Destination.Inputs[OLE DB Destination Input]. The column status returned was: "The value violated the integrity constraints for the column.".
-[OLE DB Destination [77]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "OLE DB Destination.Inputs[OLE DB Destination Input]" failed because error code 0xC020907D occurred, and the error row disposition on "OLE DB Destination.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 "OLE DB Destination" (77) failed with error code 0xC0209029 while processing input "OLE DB Destination Input" (90). 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.
I'm very new to SSIS and I do not know where to go from here. Googling the error codes has turned up fruitless.
Thanks for any help!
ExcelSource
and then if it is SQL Server, either useOLE Db Destination
or 'OLE DB Command' (OLE DB Command
if using aStoredProcedure
to import the data. You might need to add aData Conversion
transformation. - J.S. Orris