Hi,
I am loading MySQL data to MSSQL Server by using SSIS,
1. having ADO.NETODBC connection for MySQL server (ADO.NET:System.Data.Odbc.OdbcConnection)
2. OLEDB Connection for SQL Server ()
I am getting error on "ADO.NET Source" when loading souce(MYSQL) table's data having mysql datatype "longtext" , I want to push this data into destination(MSSQL) with mapping datatype is "nvarchar(max)".
But It throw direct below error on ADO.NET source
[ADO NET Source [1]] Error: An error occurred executing the provided SQL command: "SELECT PageID,UserData ,
ImageData,
UnitID,
DateReceived,
DateProcessed,
PageType,
FacilityID,
Processing
FROM ORDERS WHERE ID= 7;". Arithmetic operation resulted in an overflow.
[SSIS.Pipeline] Error: "component "ADO NET Source" (1)" failed validation and returned validation status "VS_ISBROKEN".
Thanks in advance