From 1ec76b486aa0835c6ad088c379f2066cac52fb2c Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sun, 26 Nov 2017 13:45:45 -0800 Subject: [PATCH] GUACAMOLE-363: Remove ALTER DATABASE CURRENT statements (not compatible with SQL Server 2008). --- .../schema/001-create-schema.sql | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-sqlserver/schema/001-create-schema.sql b/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-sqlserver/schema/001-create-schema.sql index da63f609c..9a8bec8f2 100644 --- a/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-sqlserver/schema/001-create-schema.sql +++ b/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-sqlserver/schema/001-create-schema.sql @@ -17,20 +17,6 @@ -- under the License. -- --- --- Turn on ANSI_NULLS for the entire DB to make it ISO-compliant. --- - -ALTER DATABASE CURRENT SET ANSI_NULLS ON; -GO - --- --- Turn on QUOTED_IDENTIFIER for the entire DB. --- - -ALTER DATABASE CURRENT SET QUOTED_IDENTIFIER ON; -GO - -- -- Connection group types --