I've been reading articles and trying to find a solution. To keep it simple I have the most basic update statement possible. I stripped all the extra code and ran literally just the update statement. If I run this statement in SSMS it executes and updates the table just fine. However, if I run it through SQL Server Agent it fails. Below is the update statement along with the error message. Any advice?Query:update Peopleset legalLastName = lastName, legalFirstName = firstNameError:Executed as user: ApplicationUser. UPDATE failed because the following SET options have incorrect settings: 'QUOTED_IDENTIFIER'. Verify that SET options are correct for use with indexed views and/or indexes on computed columns and/or filtered indexes and/or query notifications and/or XML data type methods and/or spatial index operations. [SQLSTATE 42000] (Error 1934). The step failed.
↧