Data Migration Assitant Ignore Error Code: 46010 ?

Ximing Feng 1 Reputation point
2020-11-04T19:12:14.227+00:00

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!

SQL Server | Other
{count} votes

2 answers

Sort by: Most helpful
  1. m 4,276 Reputation points
    2020-11-05T01:42:09.037+00:00

    Hi @Ximing Feng ,

    ...What can I do to resolve the issue?

    Copy code as next to have a try,if you only encounter error 46010, you can just input the specific error code to test:

    <workflowSettings>  
      
    <assessment parallelDatabases="8" ignoreErrorCodes="46010" />  
      
    </workflowSettings>  
    

    BR,
    Mia


    If the answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

  2. m 4,276 Reputation points
    2020-11-06T01:36:14.357+00:00

    Hi @Ximing Feng ,

    Is the reply helpful?

    BR,
    Mia


    If the answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.