Msg 102, Level 15, State 1, Line 5Incorrect syntax near ';'.
-- Default for user options is 0-- See http://msdn.microsoft.com/en-us/library/ms189631.aspx-- Flag values are at http://msdn.microsoft.com/en-us/library/ms176031.aspx-- e.g. QUOTED_IDENTIFER is 256SELECT c.value_in_use FROM sys.configurations AS cWHERE c.name = N'user options';-- Show database-level defaultsSELECT name, is_quoted_identifier_onFROM sys.databases AS d;-- Is QUOTED_IDENTIFIER on for the current connection?-- A value of 256 means yes-- See http://msdn.microsoft.com/en-us/library/ms177525.aspxSELECT @@OPTIONS & 256;