我遇到了这个问题-
SELECT INTO failed because the following SET options have incorrect settings: 'ANSI_WARNINGS'. 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.
在类似的问题中,解决方案之一是Ansi_warnings
设置必须打开。当我这样做时,与该过程相关的 XML 操作会正确执行,并且不会捕获任何错误/异常。但由于我需要超越Divide by zero
异常,我必须ANSI_WARNINGS OFF
在相同的程序中设置。由于我设置了ANSI_WARNINGS ON
,现在我得到了Divide by zero
异常。
请提供在同一过程中同时满足两种情况(执行 XML 操作和超过除零异常)的解决方案。