G Greg.NET Active member Joined Jun 4, 2007 Messages 27 Programming Experience 1-3 Aug 1, 2007 #1 when I set ansi nulls off does it stay off until its explicitly set to ON or does it only stay off for the duration of the query?
when I set ansi nulls off does it stay off until its explicitly set to ON or does it only stay off for the duration of the query?
G Greg.NET Active member Joined Jun 4, 2007 Messages 27 Programming Experience 1-3 Aug 3, 2007 #2 i guess I asked a stupid question because nobody is answering Upvote 0 Downvote
cjard Well-known member Joined Apr 25, 2006 Messages 7,081 Programming Experience 10+ Aug 5, 2007 #3 http://www.sqlmag.com/articles/index.cfm?articleid=7635& Why do you need to set it anyway? Whats wrong with using "IS NULL" (i.e. the proper way) as your comparator? Upvote 0 Downvote
http://www.sqlmag.com/articles/index.cfm?articleid=7635& Why do you need to set it anyway? Whats wrong with using "IS NULL" (i.e. the proper way) as your comparator?
sikunj New member Joined Jul 31, 2007 Messages 1 Location India Programming Experience 1-3 Aug 31, 2007 #4 SET ANSI NULLS OFF GO CREATE PROCEDURE <name> Go The effect of ansi null vanishes here Upvote 0 Downvote