私はこの問題に直面しました-
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.
同様の質問で、解決策の1つは、Ansi_warnings
設定をオンにする必要があることです。そうすると、プロシージャに関連する XML 操作が適切に実行され、エラーや例外はキャッチされません。しかし、Divide by zero
例外を超える必要があるためANSI_WARNINGS OFF
、同じ手順で設定する必要があります。を設定したのでANSI_WARNINGS ON
、Divide by zero
例外が発生します。
XML演算の実行とゼロ除算の例外を超える場合の両方を同じ手順で満たす解決策を提供してください。