I created a unique index (case description should be unique if IsDelete != 1)
CREATE UNIQUE NONCLUSTERED INDEX [UniqueCaseDescription]
ON [tblCases] ([fldCas
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...