I have one question in ssis
how to load sql server VARCHAR(MAX)
data type column related data into mysql server table using ssis package
source : product table ( ms sql server )
pid (int) | productDescrption (varchar(max))
Destination : product table (mysql server )
Pid ( int) | productDescription ( dt_ntext)
productdescription
varchar(max)
to dt_next
[ODBC Destination [2]] Error: Open Database Connectivity (ODBC) error occurred. state: 'HYC00'. Native Error Code: 0. [MySQL][ODBC 5.2(w) Driver][mysqld-5.7.24-log]Parameter arrays with data at execution are not supported
[SSIS.Pipeline] Error: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component "ODBC Destination" (2) failed with error code 0x80004005 while processing input "ODBC Destination Input" (13). 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.
Can you please tell me how to achieve this task in ssis
User contributions licensed under CC BY-SA 3.0