I am currently using Microsoft SSMA to migrate tables from my old Access database into an existing SQL Server. The two databases have exactly the same tables but one of the tables has an extra column. SSMA is returning an error for one of the table during migration complaining that the data type is not matching as the columns are actually aligning.
For example, table in Access where Col1
and Col3
are both datetime
:
ID Col1 Col3
Table in SQL Server: Col2
is double and Col1/Col3
are still datetime
ID Col1 Col2 Col3
Is there a way to get the tables to migrate Access data successfully into existing table (without overwriting the table)?
P.S. I am using the command-line script to run SSMA