Skip to content

Commit cb6d36a

Browse files
committed
Update SqlServerVersions.sql
Update sql versions
1 parent 1860fde commit cb6d36a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

SqlServerVersions.sql

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
IF NOT EXISTS (SELECT NULL FROM sys.tables WHERE [name] = 'SqlServerVersions')
2+
IF (OBJECT_ID('dbo.SqlServerVersions') IS NULL)
33
BEGIN
44

55
CREATE TABLE dbo.SqlServerVersions
@@ -23,6 +23,7 @@ BEGIN
2323
);
2424

2525
END;
26+
GO
2627

2728
DELETE dbo.SqlServerVersions;
2829

@@ -314,4 +315,6 @@ VALUES
314315
(10, 1787, 'RTM CU3', 'https://support.microsoft.com/en-us/help/960484', '2009-01-19', '2014-07-08', '2019-07-09', 'SQL Server 2008', 'RTM Cumulative Update 3'),
315316
(10, 1779, 'RTM CU2', 'https://support.microsoft.com/en-us/help/958186', '2008-11-19', '2014-07-08', '2019-07-09', 'SQL Server 2008', 'RTM Cumulative Update 2'),
316317
(10, 1763, 'RTM CU1', 'https://support.microsoft.com/en-us/help/956717', '2008-09-22', '2014-07-08', '2019-07-09', 'SQL Server 2008', 'RTM Cumulative Update 1'),
317-
(10, 1600, 'RTM ', '', '2008-08-06', '2014-07-08', '2019-07-09', 'SQL Server 2008', 'RTM ');
318+
(10, 1600, 'RTM ', '', '2008-08-06', '2014-07-08', '2019-07-09', 'SQL Server 2008', 'RTM ')
319+
;
320+
GO

0 commit comments

Comments
 (0)