I have a simple DTSX that takes in some data, and write it to a SQL server DB, on this DTSX execution it throws me some errors on some fields:
[OLE DB Destination [29]] Error: Column "mobile" cannot convert between unicode and non-unicode string data types.
But as you can see from the OLEDB DESTINATION COLUMNS MAPPING that's not true...how come?
I have solve this issue by converting the data to varchar(max) while selecting from source table.