Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
maevr
Posting Yak Master
169 Posts |
Posted - 2007-08-22 : 02:57:45
|
Oracle table:anr number(8)anrkod number(38)datum datenotering varchar2(4000)SQL 2005 table:ANR intANRNOT_ID intDATUM datetimeNOTERING varchar(4000)I have created a Data Flow Task containing a OLE DB Source that connects to Oracle table above and uses SQL Command:SELECT ANR,ANRNOT_ID,DATUM,NOTERING FROM ANRNOT to fetch the rows. I have another OLE DB Source to SQL table and the table above, mapping is set up as It should be and the preview works.Error that occur during runtime after processing 17920 rows???1. [OLE DB Destination [465]] Error: An OLE DB error has occurred. Error code: 0x80040E21. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80040E21 Description: "Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.".2. [OLE DB Destination [465]] Error: There was an error with input column "DATUM" (1406) on input "OLE DB Destination Input" (478). The column status returned was: "Conversion failed because the data value overflowed the specified type.".3. [OLE DB Destination [465]] Error: The "input "OLE DB Destination Input" (478)" failed because error code 0xC020907A occurred, and the error row disposition on "input "OLE DB Destination Input" (478)" specifies failure on error. An error occurred on the specified object of the specified component.4. [DTS.Pipeline] Error: The ProcessInput method on component "OLE DB Destination" (465) failed with error code 0xC0209029. 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.5. [OLE DB Source [1]] Error: The attempt to add a row to the Data Flow task buffer failed with error code 0xC0047020.6. [DTS.Pipeline] Error: The PrimeOutput method on component "OLE DB Source" (1) 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.I would appreciate som hints that can point me in the right direction to resolve the problems. |
|
|
|
|