'Incorrect SET Options' Error When Building Database Project

后端 未结 6 1509
长情又很酷
长情又很酷 2020-12-03 01:02

We are using Visual Studio and a database project to generate our database.

I just made a number of database changes (including adding a new table named Corres

6条回答
  •  孤城傲影
    2020-12-03 01:40

    In my case, I found that a computed column had been added to the "included columns" of an index. Later, when an item in that table was updated, the merge statement failed with that message. The merge was in a trigger, so this was hard to track down! Removing the computed column from the index fixed it.

提交回复
热议问题