I am converting an Access database to SQL Server tables. I use an OLE DB Source with a Destination of a ADO NET. The annoyance is converting the columns.
For a string that needs to be shortened I use a derived column and use the left string function. EX (
DT_STR, 15, 1252) LEFT (cm_type, 15)For a conversion that is just Unicode to non-Unicode I do a Data Conversion Transformation Editor.
Just wondering if I could be doing this faster somehow.