sql server - INSERT failed because the following SET options have incorrect settings: 'QUOTED_IDENTIFIER' -
we getting below message while executing stored procedure, after without change deleting , re-executing stored procedure working fine.
dbcore insert failed because following set options have incorrect settings: 'quoted_identifier'. verify set options correct use 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.
kindly understand this.
quoted_identifier
"sticky" option setting in effect when procedure created used @ runtime. since no procedure changes made, error suggests stored procedure created quoted_identifier off
, index 1 of types mentioned in error message created/dropped.
recreate stored procedure both quoted_identifier on
, ansi_nulls on
avoid problem going forward.
Comments
Post a Comment