由于使用XML / ANSI_NULLS,QUOTED_IDENTIFIER选项,SQL Server存储过程失败

前端之家收集整理的这篇文章主要介绍了由于使用XML / ANSI_NULLS,QUOTED_IDENTIFIER选项,SQL Server存储过程失败前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个存储过程,它接受 XML参数并将数据插入到多个表中.如果我使用SSMS查询窗口将存储过程运行到数据库中,一切正常.但是,我们有一个自定义安装程序,用于将存储过程部署到数据库,当使用它时,sp的执行失败并显示以下错误
INSERT Failed because the following SET options have incorrect settings:
'ANSI_NULLS,QUOTED_IDENTIFIER'. Verify that SET options are correct for use with
indexed views and/or indexes on computed columns and/or query notifications 
and/or xml data type methods.

在存储过程中编写脚本时,自定义安装程序不使用正确的设置.

在sp中设置这些(SET ARITHABORT ON; SET QUOTED_IDENTIFIER ON; SET ANSI_NULLS ON;)无效:

调用代码中的sp之前,我还尝试为open连接设置这些选项.这再次没有达到预期的效果.

看来,当sp运行到数据库时,与数据库连接的设置是重要的,而不是使用sp时的设置.

我已经通过在SSMS选项中使用这些设置进行了实验,这似乎就是这种情况.我希望有人确认这是绝对的情况(如果有一种方法我会喜欢听到它,但我没有希望)

不幸的是,改变安装程序对我来说当前不是一个选择,所以我期待不得不回滚几周的工作;所以,如果我必须这样做,我想确定(并有一些证据支持我),这是唯一的选择

在CREATE或ALTER时应用的设置在运行时被忽略.

默认情况下,SSMS具有正确的设置(sqlcmd,osql等也是如此).

BOL,CREATE PROC,“Using SET Options”

The Database Engine saves the settings
of both SET QUOTED_IDENTIFIER and SET
ANSI_NULLS
when a Transact-sql stored
procedure is created or modified.
These original settings are used when
the stored procedure is executed.
Therefore,any client session settings
for SET QUOTED_IDENTIFIER and SET
ANSI_NULLS
are ignored when the stored
procedure is running. Other SET
options,such as SET ARITHABORT,SET
ANSI_WARNINGS,or SET ANSI_PADDINGS are not saved when a stored procedure is created or modified.

原文链接:https://www.f2er.com/xml/292475.html

猜你在找的XML相关文章