After adding a computed column to a table in SQL Server 2005 I am getting the following message on INSERT, only via PHP (using PDO) it\'s working fine in SQL Se
I have found this problem arise when you do bulk insert or update using XML in sql server. I've found this issue is regarding indexing problem in a table. Check
`IF (SELECT SESSIONPROPERTY('ARITHABORT')) = 0 and SET ARITHABORT ON;`
at the top of the procedure body. This will solve the "1934" error.