Multi Flatfile to SQL Server table
Scenario: I want to load the data from flat file to SQL server table. Almost 600 log files.
I have Multi flat file as a source and SQL server - OLE DB destination.
I am getting the following errors
[OLE DB Destination [85]] Error: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80040E21.
An OLE DB record is available. Source: "Microsoft SQL Server Native Client 10.0" Hresult: 0x80040E21 Description: "Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.".
[OLE DB Destination [85]] Error: There was an error with input column "Column 15" (134) on input "OLE DB Destination Input" (98). The column status returned was: "The value could not be converted because of a potential loss of data.".
[OLE DB Destination [85]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "input "OLE DB Destination Input" (98)" failed because error code 0xC0209077 occurred, and the error row disposition on "input "OLE DB Destination Input" (98)"
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" (85) failed with error code 0xC0209029 while processing input "OLE DB Destination Input" (98). 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.
Please help me on this...I am trying dig around.
November 24th, 2010 1:14pm
Check Column 14,
It might be possible that SSIS has detected length as say X and actual length is X+10
you need to see and increase the size of that column.
Gaurav Gupta http://sqlservermsbiblog.blogspot.com/
Free Windows Admin Tool Kit Click here and download it now
November 24th, 2010 1:19pm