SQL Serverでは、実装内で次のようにフラグを変更するトリガーを書いています
SET ANSI_NULLS OFF
この変更の範囲は? トリガー、トランザクション、接続、X?
SQL Serverでは、実装内で次のようにフラグを変更するトリガーを書いています
SET ANSI_NULLS OFF
この変更の範囲は? トリガー、トランザクション、接続、X?
SET ANSI_WARNINGS OFF の Scope を確認することをお勧めします。
また、仕様には、構文が廃止される予定であることが記載されていることに注意してください http://msdn.microsoft.com/en-us/library/ms188048.aspx :
In a future version of SQL Server, ANSI_NULLS will always be ON and any applications that explicitly set the option to OFF will generate an error. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.