in an vb.net project, I hardly managed to fix every insert / update queries cause of the arithabort problems I encountered and now, my project works well for me, yesterday, by deploying the application on another server (windows 2003 R2 SP2), I encountered again the arithabort problems and I have no clue of how to fix that again. To execute an insert / update query, I use an ADODB.Connection object, and just before to run one of them, I execute these 2 following queries:
set NUMERIC_ROUNDABORT off
set ANSI_NULLS, ANSI_PADDING, ANSI_WARNINGS, ARITHABORT, CONCAT_NULL_YIELDS_NULL, QUOTED_IDENTIFIER on
Any ideas? Thanks
Edit: just noticed on the server, SQL server 2008 is installed, in my case, I use SQL Server 2008 R2, which would explain the error encountered.