I ran a Data Migration Assitant assessment on my SQL Server 2012 engine. The target version was set to 2019 running on Windows. After the assessment finished, I got a "Breaking Changes": Object [Entity] has syntax errors. Incorrect syntax near ].. Error number 46010. For more details, please see: Line 2, Column 23. The [Entity] is a table in my database
I did not find any issue with the creation script of the table. Also from this page , in the example, 46010 was ignored. So I followed the instruction and change the dma.exe.config:
<workflowSettings>
<assessment parallelDatabases="8" ignoreErrorCodes="46010;71501" />
</workflowSettings>
However, that did not change anything. The error message still showed up after I ran it again. What can I do to resolve the issue?
Thank you very much!