我遇到了这个问题 -
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操作和超越除零除外)。