Failed because incorrect arithabort setting

后端 未结 1 647
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-12 07:37

I created a unique index (case description should be unique if IsDelete != 1)

CREATE UNIQUE NONCLUSTERED INDEX [UniqueCaseDescription]
ON [tblCases] ([fldCas         


        
相关标签:
1条回答
  • 2020-12-12 07:53

    If you use SQL Server try to apply the following settings:

    1) Open SQL Server Management Studio. 2) Right click the database name you use and select Properties>Options menu. Then set Arithmetic abort enabled = True from the opened dialog.

    Note: I also tried to apply the same settings by using script, but using this method via SSMS is better to apply this setting.

    Hope this helps...

    0 讨论(0)
提交回复
热议问题