[e988c2]: / tests / support / mssql / setup.sql

Download this file

9 lines (6 with data), 189 Bytes

1
2
3
4
5
6
7
8
CREATE DATABASE test
ALTER DATABASE test SET COMPATIBILITY_LEVEL = 100;
CREATE DATABASE temp_tables
ALTER DATABASE temp_tables SET COMPATIBILITY_LEVEL = 100;
SET QUOTED_IDENTIFIER ON;
GO