INSERT failed because the following SET options have incorrect settings: 'QUOTED_IDENTIFIER'

前端 未结 4 1133
遥遥无期
遥遥无期 2021-02-11 18:24

We are getting the below message sometimes while executing the stored procedure, after that without any change deleting and re-executing the stored procedure it is working fine.

4条回答
  •  误落风尘
    2021-02-11 19:26

    I was running into this problem so I created all my Job's Steps into Stored procedures in MS SQL. When using the template it automatically has the following

    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_NULLS ON
    

提交回复
热议问题