March 28, 2014 at 5:57 am
Hi,
I am developing a SSIS package where I am trying to pull records from SQL server tables and pushing the records into Access (2000) tables. I am doing this for 10 different tables in a sequence container. It exports successfully for 6 tables and it keeps failing for 4 tables with some unknown error. Column data types for the failing tables are same as the other 6 tables. Below is the error. Please help.
[Access Database [53]] Error: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005.
[Access Database [53]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "input "OLE DB Destination Input" (66)" failed because error code 0xC020907B occurred, and the error row disposition on "input "OLE DB Destination Input" (66)" 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 "Access Database" (53) failed with error code 0xC0209029 while processing input "OLE DB Destination Input" (66). 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.
Thanks in Advance
March 28, 2014 at 6:42 am
what's the size of the data you're transferring? I believe that there is a size limit on access 2k databases being 2gb
March 28, 2014 at 6:49 am
Very less number of Records and the columns are also not of huge size.
March 28, 2014 at 8:47 am
You need to check for errors before this ..
[Access Database [53]] Error: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005.
Could you post those errors before that ?
--
SQLBuddy
March 28, 2014 at 10:46 am
No other errors. Now I am getting below 2 errors only
[Access Database [173]] Error: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80040E03.
[SSIS.Pipeline] Error: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component "Access Database" (173) failed with error code 0xC0202009 while processing input "OLE DB Destination Input" (186). 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.
March 28, 2014 at 9:24 pm
just for grins, can you attach to SQL Server from Access and create a Make Table query to create the columns you need? I'm just wondering because maybe the sizes/types of the columns in Access are not big enough to hold the data you're trying to put in them. Create a quick view in SQL Server containing all the columns you need but only a few rows and then base a Make Table query on that view and see what field types and sizes you Access creates.
April 8, 2014 at 12:32 pm
I also think it is either data types or truncation.
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply