Hello Firends
My Package get data from MYSQL table and insert in SQL SERVER.
Before 3-4 days it was working fine but now;
when i run a package it run correctly but after fetching some rows it give me error.
[OLE DB Destination [118]] 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 10.0" Hresult: 0x80004005 Description: "Invalid character value for cast specification".
[OLE DB Destination [118]] Error: There was an error with input column "modify_date" (172) on input "OLE DB Destination Input" (131). The column status returned was: "The value could not be converted because of a
potential loss of data.".
[OLE DB Destination [118]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "input "OLE DB Destination Input" (131)" failed because error code 0xC0209077 occurred, and the error row disposition on "input "OLE
DB Destination Input" (131)" 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.
I'm using datafowtask for this.
source use this Query
SELECT lead_id,DATE_FORMAT(entry_date,'%m-%d-%Y %h:%m:%s')as entry_date,
DATE_FORMAT(modify_date,'%m-%d-%Y %h:%m:%s') as modify_date,status,user,vendor_lead_code,source_id,list_id,
comments,called_count,DATE_FORMAT(last_local_call_time,'%m-%d-%Y %h:%m:%s')as last_local_call_time
,rank,owner,entry_list_id
FROM asterisk.vicidial_list l
Modify Date uses datatype at destination that is datetime.
Kindly help me .