SET Statements (Part 2)
Category Statements Descirption Syntax Ex Permission IMP To Remember ISO Settings statements SET ANSI_DEFAULTS Controls a group of SQL Server settings that collectively specify some ISO standard behavior. SET ANSI_DEFAULTS { ON | OFF } SET ANSI_DEFAULTS ON Public ANSI_DEFAULTS is a server-side setting which can enable the behavior for all client connections. When enabled (ON), this option enables the following ISO settings:SET ANSI_NULLS SET CURSOR_CLOSE_ON_COMMIT SET ANSI_NULL_DFLT_ON SET IMPLICIT_TRANSACTIONS SET ANSI_PADDING SET QUOTED_IDENTIFIER SET ANSI_WARNINGS SET ANSI_NULL_DFLT_OFF Alters the behavior of the session to override default nullability of new columns when the ANSI null default option for the database is true. SET ANSI_NULL_DFLT_OFF { ON | OFF } SET ANSI_NULL_DFLT_OFF OFF Public SET ANSI_NULL_DFLT_ON Modifies the behavior of the session to override default nullability of new columns when the ANSI null default option for the database is false. SET ANSI_NULL_DFLT_ON {O...