Skip to content

Instantly share code, notes, and snippets.

@billinkc
Last active November 17, 2016 19:18
Show Gist options
  • Save billinkc/93de50fecd111967df83 to your computer and use it in GitHub Desktop.
Save billinkc/93de50fecd111967df83 to your computer and use it in GitHub Desktop.
Possibly handy views for identifying SQL Server patches and then what is my patch level - how long since patched, etc. Covers 2005 to current
CREATE VIEW dbo.MyPatchLevel
AS
WITH MostRecentBuild AS
(
SELECT
SRC.Build
, SRC.[Release Date]
, SRC.SimpleVersion
, SRC.[KB / Description]
FROM
dbo.PatchLevel AS SRC
WHERE
SRC.[Release Date] =
(
SELECT
MAX(SRCI.[Release Date])
FROM
dbo.PatchLevel AS SRCI
WHERE
SRCI.SimpleVersion = SRC.SimpleVersion
)
AND
SRC.Build =
(
SELECT
MAX(SRCI.Build)
FROM
dbo.PatchLevel AS SRCI
WHERE
SRCI.SimpleVersion = SRC.SimpleVersion
AND SRCI.[Release Date] = SRC.[Release Date]
)
)
, MyVersion AS
(
SELECT
SRC.Build
, SRC.[File version]
, MRB.[KB / Description]
, SRC.[Release Date]
, D.ProductVersion
, D.ProductLevel
, D.Edition
, D.Version
, SRC.SimpleVersion
, MRB.Build AS MostRecentBuild
, MRB.[Release Date] AS MostRecentReleaseDate
FROM
dbo.PatchLevel AS SRC
INNER JOIN
(
SELECT
SERVERPROPERTY('productversion') AS ProductVersion
, SERVERPROPERTY ('productlevel') AS ProductLevel
, SERVERPROPERTY ('edition') AS Edition
, @@VERSION AS Version
)D
ON D.ProductVersion = SRC.Build
INNER JOIN
MostRecentBuild AS MRB
ON MRB.SimpleVersion = SRC.SimpleVersion
)
SELECT
MV.ProductVersion AS CurrentVersion
, MV.MostRecentBuild
, MV.[Release Date]
, MV.MostRecentReleaseDate
, DATEDIFF(DAY, MV.[Release Date], MV.MostRecentReleaseDate) AS DaysSincePatchAvailable
, MV.[File version]
, MV.ProductLevel
, MV.[KB / Description] AS [Most Recent KB / Description]
, MV.Edition
, MV.Version
, MV.SimpleVersion
, CAST(SERVERPROPERTY('ComputerNamePhysicalNetBIOS') AS sysname) AS Server
, CAST(SERVERPROPERTY('InstanceName') AS sysname) AS Instance
, CAST(SERVERPROPERTY('ServerName') AS sysname) AS ServerName
FROM
MyVersion AS MV;
GO
CREATE VIEW dbo.PatchLevel
AS
-- data from http://sqlserverbuilds.blogspot.com
WITH SRC(Build,[File version],[KB / Description],[Release Date], SimpleVersion) AS
(
SELECT
CASE LEN(D.Build) - LEN(REPLACE(D.Build, '.', ''))
WHEN 3 THEN REPLACE(D.Build, '.00.', '.0.')
WHEN 2 THEN REPLACE(D.Build, '.00.', '.0.') + '.0'
END AS Build
, D.FileVersion
, D.KB
, CAST(REPLACE(D.ReleaseDate, ' *new', '') AS date) AS ReleaseDate
, CAST(LEFT(D.Build, 4) AS decimal(4,2))
FROM
(
VALUES
('13.00.4001.0','2015.130.4001.0','SQL Server 2016 Service Pack 1 (SP1)','November 16, 2016')
, ('13.00.2186.6','2015.130.2186.6','3194717 MS16-136: Description of the security update for SQL Server 2016 CU: November 8, 2016','November 8, 2016')
, ('13.00.2170.0','2015.130.2170.0','3199171 On-demand hotfix update package for SQL Server 2016 CU2','November 1, 2016')
, ('13.00.2169.0','2015.130.2169.0','3195813 On-demand hotfix update package for SQL Server 2016 CU2','October 26, 2016')
, ('13.00.2164.0','2015.130.2164.0','3182270 Cumulative update 2 (CU2) for SQL Server 2016','September 22, 2016')
, ('13.00.2149.0','2015.130.2149.0','3164674 Cumulative update 1 (CU1) for SQL Server 2016','July 26, 2016')
, ('13.00.1722.0','2015.130.1722.0','3194716 MS16-136: Description of the security update for SQL Server 2016 GDR: November 8, 2016','November 8, 2016')
, ('13.00.1711.0','2015.130.1711.0','3179258 Processing a partition causes data loss on other partitions after the database is restored in SQL Server 2016 (1200)','August 17, 2016')
, ('13.00.1708.0','2015.130.1708.0','3164398 Critical update for SQL Server 2016 MSVCRT prerequisites','June 3, 2016')
, ('13.00.1601.5','2015.130.1601.5','Microsoft SQL Server 2016 RTM','June 1, 2016')
, ('13.00.1400.361','2015.130.1400.361','Microsoft SQL Server 2016 Release Candidate 3 (RC3)','April 15, 2016')
, ('13.00.1300.275','2015.130.1300.275','Microsoft SQL Server 2016 Release Candidate 2 (RC2)','April 1, 2016')
, ('13.00.1200.242','2015.130.1200.242','Microsoft SQL Server 2016 Release Candidate 1 (RC1)','March 18, 2016')
, ('13.00.1100.288','2015.130.1100.288','Microsoft SQL Server 2016 Release Candidate 0 (RC0)','March 7, 2016')
, ('13.00.1000.281','2015.130.1000.281','Microsoft SQL Server 2016 Community Technology Preview 3.3 (CTP3.3)','February 3, 2016')
, ('13.00.900.73','2015.130.900.73','Microsoft SQL Server 2016 Community Technology Preview 3.2 (CTP3.2)','December 16, 2015')
, ('13.00.800.11','2015.130.800.11','Microsoft SQL Server 2016 Community Technology Preview 3.1 (CTP3.1)','November 30, 2015')
, ('13.00.700.139','2015.130.700.139','Microsoft SQL Server 2016 Community Technology Preview 3.0 (CTP3.0)','October 28, 2015')
, ('13.00.600.65','2015.130.600.65','Microsoft SQL Server 2016 Community Technology Preview 2.4 (CTP2.4)','September 30, 2015')
, ('13.00.500.53','2015.130.500.53','Microsoft SQL Server 2016 Community Technology Preview 2.3 (CTP2.3)','August 28, 2015')
, ('13.00.407.1','2015.130.407.1','Microsoft SQL Server 2016 Community Technology Preview 2.2 (CTP2.2)','July 23, 2015')
, ('13.00.400.91','2015.130.400.91','Microsoft SQL Server 2016 Community Technology Preview 2.2 (CTP2.2) [withdrawn]','July 22, 2015')
, ('13.00.300.44','2015.130.300.444','Microsoft SQL Server 2016 Community Technology Preview 2.1 (CTP2.1)','June 24, 2015')
, ('13.00.200.172','2015.130.200.172','Microsoft SQL Server 2016 Community Technology Preview 2 (CTP2)','May 27, 2015')
, ('12.00.5532','2014.120.5532.0','3194718 MS16-136: Description of the security update for SQL Server 2014 Service Pack 2 CU: November 8, 2016','November 8, 2016')
, ('12.00.5522','2014.120.5522.0','3188778 Cumulative update package 2 (CU2) for SQL Server 2014 Service Pack 2','October 18, 2016')
, ('12.00.5511','2014.120.5511.0','3178925 Cumulative update package 1 (CU1) for SQL Server 2014 Service Pack 2','August 26, 2016')
, ('12.00.5203','2014.120.5203.0','3194714 MS16-136: Description of the security update for SQL Server 2014 Service Pack 2 GDR: November 8, 2016','November 8, 2016')
, ('12.00.5000','2014.120.5000.0','SQL Server 2014 Service Pack 2 (SP2)','July 11, 2016')
, ('12.00.4487','2014.120.4487.0','3194722 MS16-136: Description of the security update for SQL Server 2014 Service Pack 1 CU: November 8, 2016','November 8, 2016')
, ('12.00.4474','2014.120.4474.0','3186964 Cumulative update package 9 (CU9) for SQL Server 2014 Service Pack 1','October 18, 2016')
, ('12.00.4468','2014.120.4468.0','3174038 Cumulative update package 8 (CU8) for SQL Server 2014 Service Pack 1','August 15, 2016')
, ('12.00.4463','2014.120.4463.0','3174370 A memory leak occurs when you use Azure Storage in SQL Server 2014','August 4, 2016')
, ('12.00.4459','2014.120.4459.0','3162659 Cumulative update package 7 (CU7) for SQL Server 2014 Service Pack 1','June 20, 2016')
, ('12.00.4457','2014.120.4457.1','3167392 REFRESHED Cumulative update package 6 (CU6) for SQL Server 2014 Service Pack 1','May 31, 2016')
, ('12.00.4449','2014.120.4449.1','3144524 DEPRECATED Cumulative update package 6 (CU6) for SQL Server 2014 Service Pack 1','April 19, 2016')
, ('12.00.4439','2014.120.4439.1','3130926 Cumulative update package 5 (CU5) for SQL Server 2014 Service Pack 1','February 22, 2016')
, ('12.00.4437','2014.120.4437.0','3130999 On-demand hotfix update package for SQL Server 2014 Service Pack 1 Cumulative Update 4','February 5, 2016')
, ('12.00.4436','2014.120.4436.0','3106660 Cumulative update package 4 (CU4) for SQL Server 2014 Service Pack 1','December 22, 2015')
, ('12.00.4433','2014.120.4433.0','3119148 FIX: Error 3203 and a SQL Server 2014 backup job can''t restart when a network failure occurs','December 9, 2015')
, ('12.00.4432','2014.120.4432.0','3097972 FIX: Error when your stored procedure calls another stored procedure on linked server in SQL Server 2014','November 19, 2015')
, ('12.00.4232','2014.120.4232.0','3194720 MS16-136: Description of the security update for SQL Server 2014 Service Pack 1 GDR: November 8, 2016','November 8, 2016')
, ('12.00.4427','2014.120.4427.24','3094221 Cumulative update package 3 (CU3) for SQL Server 2014 Service Pack 1','October 21, 2015')
, ('12.00.4422','2014.120.4422.0','3075950 Cumulative update package 2 (CU2) for SQL Server 2014 Service Pack 1','August 17, 2015')
, ('12.00.4419','2014.120.4419.0','An on-demand hotfix update package is available for SQL Server 2014 SP1','July 24, 2015')
, ('12.00.4416','2014.120.4416.0','3067839 Cumulative update package 1 (CU1) for SQL Server 2014 Service Pack 1','June 22, 2015')
, ('12.00.4219','2014.120.4219.0','TLS 1.2 support for SQL Server 2014 SP1','January 27, 2016')
, ('12.00.4213','2014.120.4213.0','MS15-058: Description of the nonsecurity update for SQL Server 2014 Service Pack 1 GDR: July 14, 2015','July 14, 2015')
, ('12.00.4100','2014.120.4100.1','SQL Server 2014 Service Pack 1 (SP1)','May 14, 2015')
, ('12.00.4050','2014.120.4050.0','SQL Server 2014 Service Pack 1 (SP1) [withdrawn]','April 15, 2015')
, ('12.00.2569','2014.120.2569.0','3158271 Cumulative update package 14 (CU14) for SQL Server 2014','June 20, 2016')
, ('12.00.2568','2014.120.2568.0','3144517 Cumulative update package 13 (CU13) for SQL Server 2014','April 18, 2016')
, ('12.00.2564','2014.120.2564.0','3130923 Cumulative update package 12 (CU12) for SQL Server 2014','February 22, 2016')
, ('12.00.2560','2014.120.2560.0','3106659 Cumulative update package 11 (CU11) for SQL Server 2014','December 22, 2015')
, ('12.00.2556','2014.120.2556.4','3094220 Cumulative update package 10 (CU10) for SQL Server 2014','October 20, 2015')
, ('12.00.2553','2014.120.2553.0','3075949 Cumulative update package 9 (CU9) for SQL Server 2014','August 17, 2015')
, ('12.00.2548','2014.120.2548.0','MS15-058: Description of the security update for SQL Server 2014 QFE: July 14, 2015','July 14, 2015')
, ('12.00.2546','2014.120.2546.0','3067836 Cumulative update package 8 (CU8) for SQL Server 2014','June 22, 2015')
, ('12.00.2506','2014.120.2506.0','3063054 Update enables Premium Storage support for Data files on Azure Storage and resolves backup failures','May 19, 2015')
, ('12.00.2505','2014.120.2505.0','3052167 FIX: Error 1205 when you execute parallel query that contains outer join operators in SQL Server 2014','May 19, 2015')
, ('12.00.2504','2014.120.2504.0','2999809 FIX: Poor performance when a query contains table joins in SQL Server 2014','May 5, 2015')
, ('12.00.2504','2014.120.2504.0','3058512 FIX: Unpivot Transformation task changes null to zero or empty strings in SSIS 2014','May 5, 2015')
, ('12.00.2495','2014.120.2495.0','3046038 Cumulative update package 7 (CU7) for SQL Server 2014','April 23, 2015')
, ('12.00.2488','2014.120.2488.0','3048751 FIX: Deadlock cannot be resolved automatically when you run a SELECT query that can result in a parallel batch-mode scan','April 1, 2015')
, ('12.00.2485','2014.120.2485.0','3043788 An on-demand hotfix update package is available for SQL Server 2014','March 16, 2015')
, ('12.00.2480','2014.120.2480.0','3031047 Cumulative update package 6 (CU6) for SQL Server 2014','February 16, 2015')
, ('12.00.2474','2014.120.2474.0','3034679 FIX: AlwaysOn availability groups are reported as NOT SYNCHRONIZING','May 15, 2015')
, ('12.00.2472','2014.120.2472.0','3032087 FIX: Cannot show requested dialog after you connect to the latest SQL Database Update V12 (preview) with SQL Server 2014','January 28, 2015')
, ('12.00.2464','2014.120.2464.0','3024815 Large query compilation waits on RESOURCE_SEMAPHORE_QUERY_COMPILE in SQL Server 2014','January 5, 2015')
, ('12.00.2456','2014.120.2456.0','3011055 Cumulative update package 5 (CU5) for SQL Server 2014','December 18, 2014')
, ('12.00.2436','2014.120.2436.0','3014867 FIX: "Remote hardening failure" exception cannot be caught and a potential data loss when you use SQL Server 2014','November 27, 2014')
, ('12.00.2430','2014.120.2430.0','2999197 Cumulative update package 4 (CU4) for SQL Server 2014','October 21, 2014')
, ('12.00.2423','2014.120.2423.0','3007050 FIX: RTDATA_LIST waits when you run natively stored procedures that encounter expected failures in SQL Server 2014','October 22, 2014')
, ('12.00.2405','2014.120.2405.0','2999809 FIX: Poor performance when a query contains table joins in SQL Server 2014','September 25, 2014')
, ('12.00.2402','2014.120.2402.0','2984923 Cumulative update package 3 (CU3) for SQL Server 2014','August 18, 2014')
, ('12.00.2381','2014.120.2381.0','2977316 MS14-044: Description of the security update for SQL Server 2014 (QFE)','August 12, 2014')
, ('12.00.2370','2014.120.2370.0','2967546 Cumulative update package 2 (CU2) for SQL Server 2014','June 27, 2014')
, ('12.00.2342','2014.120.2342.0','2931693 Cumulative update package 1 (CU1) for SQL Server 2014','April 21, 2014')
, ('12.00.2271','2014.120.2271.0','TLS 1.2 support for SQL Server 2014 RTM','January 27, 2016')
, ('12.00.2269','2014.120.2269.0','3045324 MS15-058: Description of the security update for SQL Server 2014 GDR: July 14, 2015','July 14, 2015')
, ('12.00.2254','2014.120.2254.0','2977315 MS14-044: Description of the security update for SQL Server 2014 (GDR)','August 12, 2014')
, ('12.00.2000','2014.120.2000.8','SQL Server 2014 RTM','April 1, 2014')
, ('12.00.1524','2014.120.1524.0','Microsoft SQL Server 2014 Community Technology Preview 2 (CTP2)','October 15, 2013')
, ('11.00.9120','2013.110.9120.0','Microsoft SQL Server 2014 Community Technology Preview 1 (CTP1)','June 25, 2013')
, ('11.00.6567','2012.110.6567.0','3194724 MS16-136: Description of the security update for SQL Server 2012 Service Pack 3 CU: November 8, 2016','November 8, 2016')
, ('11.00.6544','2011.110.6544.0','3180915 Cumulative update package 5 (CU5) for SQL Server 2012 Service Pack 3','September 21, 2016')
, ('11.00.6540','2011.110.6540.0','3165264 Cumulative update package 4 (CU4) for SQL Server 2012 Service Pack 3','July 19, 2016')
, ('11.00.6537','2011.110.6537.0','3152635 Cumulative update package 3 (CU3) for SQL Server 2012 Service Pack 3','May 17, 2016')
, ('11.00.6523','2011.110.6523.0','3137746 Cumulative update package 2 (CU2) for SQL Server 2012 Service Pack 3','March 22, 2016')
, ('11.00.6518','2011.110.6518.0','3123299 Cumulative update package 1 (CU1) for SQL Server 2012 Service Pack 3','January 19, 2016')
, ('11.00.6248','2012.110.6248.0','3194721 MS16-136: Description of the security update for SQL Server 2012 Service Pack 3 GDR: November 8, 2016','November 8, 2016')
, ('11.00.6216','2012.110.6216.27','TLS 1.2 support for SQL Server 2012 SP3 GDR','January 27, 2016')
, ('11.00.6020','2011.110.6020.0','SQL Server 2012 Service Pack 3 (SP3)','November 23, 2015')
, ('11.00.5676','2012.110.5676.0','3194725 MS16-136: Description of the security update for SQL Server 2012 Service Pack 2 CU: November 8, 2016','November 8, 2016')
, ('11.00.5657','2011.110.5657.0','3180914 Cumulative update package 14 (CU14) for SQL Server 2012 Service Pack 2','September 20, 2016')
, ('11.00.5655','2011.110.5655.0','3165266 Cumulative update package 13 (CU13) for SQL Server 2012 Service Pack 2','July 19, 2016')
, ('11.00.5649','2011.110.5649.0','3152637 Cumulative update package 12 (CU12) for SQL Server 2012 Service Pack 2','May 16, 2016')
, ('11.00.5646','2011.110.5646.0','3137745 Cumulative update package 11 (CU11) for SQL Server 2012 Service Pack 2','March 22, 2016')
, ('11.00.5644','2011.110.5644.0','3120313 Cumulative update package 10 (CU10) for SQL Server 2012 Service Pack 2','January 20, 2016')
, ('11.00.5641','2011.110.5641.0','3098512 Cumulative update package 9 (CU9) for SQL Server 2012 Service Pack 2','November 18, 2015')
, ('11.00.5636','2011.110.5636.3','3097636 FIX: Performance decrease when application with connection pooling frequently connects or disconnects in SQL Server','September 22, 2015')
, ('11.00.5634','2011.110.5634.0','3082561 Cumulative update package 8 (CU8) for SQL Server 2012 Service Pack 2','September 21, 2015')
, ('11.00.5629','2011.110.5629.0','3087872 FIX: Access violations when you use the FileTable feature in SQL Server 2012','August 31, 2015')
, ('11.00.5623','2011.110.5623.0','3072100 Cumulative update package 7 (CU7) for SQL Server 2012 Service Pack 2','July 20, 2015')
, ('11.00.5613','2011.110.5613.0','3045319 MS15-058: Description of the security update for SQL Server 2012 Service Pack 2 QFE: July 14, 2015','July 14, 2015')
, ('11.00.5592','2011.110.5592.0','3052468 Cumulative update package 6 (CU6) for SQL Server 2012 Service Pack 2','May 19, 2015')
, ('11.00.5582','2011.110.5582.0','3037255 Cumulative update package 5 (CU5) for SQL Server 2012 Service Pack 2','March 16, 2015')
, ('11.00.5571','2011.110.5571.0','3034679 FIX: AlwaysOn availability groups are reported as NOT SYNCHRONIZING','May 15, 2015')
, ('11.00.5569','2011.110.5569.0','3007556 Cumulative update package 4 (CU4) for SQL Server 2012 Service Pack 2','January 20, 2015')
, ('11.00.5556','2011.110.5556.0','3002049 Cumulative update package 3 (CU3) for SQL Server 2012 Service Pack 2','November 17, 2014')
, ('11.00.5548','2011.110.5548.0','2983175 Cumulative update package 2 (CU2) for SQL Server 2012 Service Pack 2','September 15, 2014')
, ('11.00.5532','2011.110.5532.0','2976982 Cumulative update package 1 (CU1) for SQL Server 2012 Service Pack 2','July 24, 2014')
, ('11.00.5522','2011.110.5522.0','2969896 FIX: Data loss in clustered index occurs when you run online build index in SQL Server 2012 (Hotfix for SQL2012 SP2)','June 20, 2014')
, ('11.00.5388','2012.110.5388.0','3194719 MS16-136: Description of the security update for SQL Server 2012 Service Pack 2 GDR: November 8, 2016','November 8, 2016')
, ('11.00.5352','2012.110.5352.0','3135244 TLS 1.2 support for SQL Server 2012 SP2 GDR','January 27, 2016')
, ('11.00.5343','2011.110.5343.0','3045321 MS15-058: Description of the security update for SQL Server 2012 Service Pack 2 GDR: July 14, 2015','July 14, 2015')
, ('11.00.5058','2011.110.5058.0','SQL Server 2012 Service Pack 2 (SP2)','June 10, 2014')
, ('11.00.3513','2011.110.3513.0','3045317 MS15-058: Description of the security update for SQL Server 2012 SP1 QFE: July 14, 2015','July 14, 2015')
, ('11.00.3492','2011.110.3492.0','3052476 Cumulative update package 16 (CU16) for SQL Server 2012 Service Pack 1','May 18, 2015')
, ('11.00.3487','2011.110.3487.0','3038001 Cumulative update package 15 (CU15) for SQL Server 2012 Service Pack 1','March 16, 2015')
, ('11.00.3486','2011.110.3486.0','3023636 Cumulative update package 14 (CU14) for SQL Server 2012 Service Pack 1','January 19, 2015')
, ('11.00.3460','2011.110.3460.0','2977325 MS14-044: Description of the security update for SQL Server 2012 Service Pack 1 (QFE)','August 12, 2014')
, ('11.00.3482','2011.110.3482.0','3002044 Cumulative update package 13 (CU13) for SQL Server 2012 Service Pack 1','November 17, 2014')
, ('11.00.3470','2011.110.3470.0','2991533 Cumulative update package 12 (CU12) for SQL Server 2012 Service Pack 1','September 15, 2014')
, ('11.00.3449','2011.110.3449.0','2975396 Cumulative update package 11 (CU11) for SQL Server 2012 Service Pack 1','July 21, 2014')
, ('11.00.3437','2011.110.3437.0','2969896 FIX: Data loss in clustered index occurs when you run online build index in SQL Server 2012 (Hotfix for SQL2012 SP1)','June 10, 2014')
, ('11.00.3431','2011.110.3431.0','2954099 Cumulative update package 10 (CU10) for SQL Server 2012 Service Pack 1','May 19, 2014')
, ('11.00.3412','2011.110.3412.0','2931078 Cumulative update package 9 (CU9) for SQL Server 2012 Service Pack 1','March 18, 2014')
, ('11.00.3401','2011.110.3401.0','2917531 Cumulative update package 8 (CU8) for SQL Server 2012 Service Pack 1','January 20, 2014')
, ('11.00.3393','2011.110.3393.0','2894115 Cumulative update package 7 (CU7) for SQL Server 2012 Service Pack 1','November 18, 2013')
, ('11.00.3381','2011.110.3381.0','2874879 Cumulative update package 6 (CU6) for SQL Server 2012 Service Pack 1','September 16, 2013')
, ('11.00.3373','2011.110.3373.0','2861107 Cumulative update package 5 (CU5) for SQL Server 2012 Service Pack 1','July 16, 2013')
, ('11.00.3368','2011.110.3368.0','2833645 Cumulative update package 4 (CU4) for SQL Server 2012 Service Pack 1','May 31, 2013')
, ('11.00.3350','2011.110.3350.0','2832017 FIX: You can’t create or open SSIS projects or maintenance plans after you apply Cumulative Update 3 for SQL Server 2012 SP1','April 17, 2013')
, ('11.00.3349','2011.110.3349.0','2812412 Cumulative update package 3 (CU3) for SQL Server 2012 Service Pack 1','March 18, 2013')
, ('11.00.3339','2011.110.3339.0','2790947 Cumulative update package 2 (CU2) for SQL Server 2012 Service Pack 1','January 25, 2013')
, ('11.00.3335','2011.110.3335.0','2800050 FIX: Component installation process fails after you install SQL Server 2012 SP1','January 14, 2013')
, ('11.00.3321','2011.110.3321.0','2765331 Cumulative update package 1 (CU1) for SQL Server 2012 Service Pack 1','November 20, 2012')
, ('11.00.3156','2011.110.3156.0','3045318 MS15-058: Description of the security update for SQL Server 2012 SP1 GDR: July 14, 2015','July 14, 2015')
, ('11.00.3153','2011.110.3153.0','2977326 MS14-044: Description of the security update for SQL Server 2012 Service Pack 1 (GDR)','August 12, 2014')
, ('11.00.3128','2011.110.3128.0','2793634 Windows Installer starts repeatedly after you install SQL Server 2012 SP1','January 3, 2013')
, ('11.00.3000','2011.110.3000.0','SQL Server 2012 Service Pack 1 (SP1)','November 6, 2012')
, ('11.00.2845','2011.110.2845.0','SQL Server 2012 Service Pack 1 Customer Technology Preview 4 (CTP4)','September 20, 2012')
, ('11.00.2809','2011.110.2809.24','SQL Server 2012 Service Pack 1 Customer Technology Preview 3 (CTP3)','July 5, 2012')
, ('11.00.2424','2011.110.2424.0','2908007 Cumulative update package 11 (CU11) for SQL Server 2012','December 17, 2013')
, ('11.00.2420','2011.110.2420.0','2891666 Cumulative update package 10 (CU10) for SQL Server 2012','October 21, 2013')
, ('11.00.2419','2011.110.2419.0','2867319 Cumulative update package 9 (CU9) for SQL Server 2012','August 21, 2013')
, ('11.00.2410','2011.110.2410.0','2844205 Cumulative update package 8 (CU8) for SQL Server 2012','June 18, 2013')
, ('11.00.2405','2011.110.2405.0','2823247 Cumulative update package 7 (CU7) for SQL Server 2012','April 15, 2013')
, ('11.00.2401','2011.110.2401.0','2728897 Cumulative update package 6 (CU6) for SQL Server 2012','February 18, 2013')
, ('11.00.2395','2011.110.2395.0','2777772 Cumulative update package 5 (CU5) for SQL Server 2012','December 18, 2012')
, ('11.00.9000','2011.110.9000.5','Microsoft SQL Server 2012 With Power View For Multidimensional Models Customer Technology Preview (CTP3)','November 27, 2012')
, ('11.00.2383','2011.110.2383.0','2758687 Cumulative update package 4 (CU4) for SQL Server 2012','October 18, 2012')
, ('11.00.2376','2011.110.2376.0','Microsoft Security Bulletin MS12-070','October 9, 2012')
, ('11.00.2332','2011.110.2332.0','2723749 Cumulative update package 3 (CU3) for SQL Server 2012','August 29, 2012')
, ('11.00.2325','2011.110.2325.0','2703275 Cumulative update package 2 (CU2) for SQL Server 2012','June 18, 2012')
, ('11.00.2316','2011.110.2316.0','2679368 Cumulative update package 1 (CU1) for SQL Server 2012','April 12, 2012')
, ('11.00.2218','2011.110.2218.0','Microsoft Security Bulletin MS12-070','October 9, 2012')
, ('11.00.2214','2011.110.2214.0','2685308 FIX: SSAS uses only 20 cores in SQL Server 2012 Business Intelligence','April 6, 2012')
, ('11.00.2100','2011.110.2100.60','SQL Server 2012 RTM','March 6, 2012')
, ('11.00.1913','2011.110.1913.37','Microsoft SQL Server 2012 Release Candidate 1 (RC1)','December 16, 2011')
, ('11.00.1750','2011.110.1750.32','Microsoft SQL Server 2012 Release Candidate 0 (RC0)','November 17, 2011')
, ('11.00.1440','2010.110.1440.19','Microsoft SQL Server 2012 (codename Denali) Community Technology Preview 3 (CTP3)','July 11, 2011')
, ('11.00.1103','2010.110.1103.9','Microsoft SQL Server 2012 (codename Denali) Community Technology Preview 1 (CTP1)','November 8, 2010')
, ('10.50.6542','2009.100.6542.0','Intermittent service terminations occur after you install any SQL Server 2008 or SQL Server 2008 R2 versions from KB3135244','March 3, 2016')
, ('10.50.6537','2009.100.6537.0','TLS 1.2 support for SQL Server 2008 R2 SP3','January 27, 2016')
, ('10.50.6529','2009.100.6529.0','3045314 MS15-058: Description of the security update for SQL Server 2008 R2 Service Pack 3 QFE: July 14, 2015','July 14, 2015')
, ('10.50.6525','2009.100.6525.0','3033860 An on-demand hotfix update package is available for SQL Server 2008 R2 Service Pack 3 (SP3)','February 9, 2015')
, ('10.50.6220','2009.100.6220.0','3045316 MS15-058: Description of the security update for SQL Server 2008 R2 Service Pack 3 GDR: July 14, 2015','July 14, 2015')
, ('10.50.6000','2009.100.6000.0','SQL Server 2008 R2 Service Pack 3 (SP3)','September 26, 2014')
, ('10.50.4343','2009.100.4343.0','TLS 1.2 support for SQL Server 2008 R2 SP2 (IA-64 only)','January 27, 2016')
, ('10.50.4339','2009.100.4339.0','3045312 MS15-058: Description of the security update for SQL Server 2008 R2 Service Pack 2 QFE: July 14, 2015','July 14, 2015')
, ('10.50.4331','2009.100.4331.0','2987585 Restore Log with Standby Mode on an Advanced Format disk may cause a 9004 error in SQL Server 2008 R2 or SQL Server 2012','August 27, 2014')
, ('10.50.4321','2009.100.4321.0','2977319 MS14-044: Description of the security update for SQL Server 2008 R2 Service Pack 2 (QFE)','August 12, 2014')
, ('10.50.4319','2009.100.4319.0','2967540 Cumulative update package 13 (CU13) for SQL Server 2008 R2 Service Pack 2','June 30, 2014')
, ('10.50.4305','2009.100.4305.0','2938478 Cumulative update package 12 (CU12) for SQL Server 2008 R2 Service Pack 2','April 21, 2014')
, ('10.50.4302','2009.100.4302.0','2926028 Cumulative update package 11 (CU11) for SQL Server 2008 R2 Service Pack 2','February 18, 2014')
, ('10.50.4297','2009.100.4297.0','2908087 Cumulative update package 10 (CU10) for SQL Server 2008 R2 Service Pack 2','December 16, 2013')
, ('10.50.4295','2009.100.4295.0','2887606 Cumulative update package 9 (CU9) for SQL Server 2008 R2 Service Pack 2','October 29, 2013')
, ('10.50.4290','2009.100.4290.0','2871401 Cumulative update package 8 (CU8) for SQL Server 2008 R2 Service Pack 2','August 30, 2013')
, ('10.50.4286','2009.100.4286.0','2844090 Cumulative update package 7 (CU7) for SQL Server 2008 R2 Service Pack 2','June 17, 2013')
, ('10.50.4285','2009.100.4285.0','2830140 Cumulative update package 6 (CU6) for SQL Server 2008 R2 Service Pack 2 (updated)','June 13, 2013')
, ('10.50.4279','2009.100.4279.0','2830140 Cumulative update package 6 (CU6) for SQL Server 2008 R2 Service Pack 2 (replaced)','April 15, 2013')
, ('10.50.4276','2009.100.4276.0','2797460 Cumulative update package 5 (CU5) for SQL Server 2008 R2 Service Pack 2','February 18, 2013')
, ('10.50.4270','2009.100.4270.0','2777358 Cumulative update package 4 (CU4) for SQL Server 2008 R2 Service Pack 2','December 17, 2012')
, ('10.50.4266','2009.100.4266.0','2754552 Cumulative update package 3 (CU3) for SQL Server 2008 R2 Service Pack 2','October 15, 2012')
, ('10.50.4263','2009.100.4263.0','2740411 Cumulative update package 2 (CU2) for SQL Server 2008 R2 Service Pack 2','August 29, 2012')
, ('10.50.4260','2009.100.4260.0','2720425 Cumulative update package 1 (CU1) for SQL Server 2008 R2 Service Pack 2','August 1, 2012')
, ('10.50.4046','2009.100.4046.0','TLS 1.2 support for SQL Server 2008 R2 SP2 GDR (IA-64 only)','January 27, 2016')
, ('10.50.4042','2009.100.4042.0','3045313 MS15-058: MS15-058: Description of the security update for SQL Server 2008 R2 Service Pack 2 GDR: July 14, 2015','July 14, 2015')
, ('10.50.4033','2009.100.4033.0','2977320 MS14-044: Description of the security update for SQL Server 2008 R2 Service Pack 2 (GDR)','August 12, 2014')
, ('10.50.4000','2009.100.4000.0','SQL Server 2008 R2 Service Pack 2 (SP2)','July 26, 2012')
, ('10.50.3720','2009.100.3720.0','SQL Server 2008 R2 Service Pack 2 Community Technology Preview (CTP)','May 13, 2012')
, ('10.50.2881','2009.100.2881.0','2868244 An on-demand hotfix update package for SQL Server 2008 R2 Service Pack 1','August 12, 2013')
, ('10.50.2876','2009.100.2876.0','2855792 Cumulative update package 13 (CU13) for SQL Server 2008 R2 Service Pack 1','June 17, 2013')
, ('10.50.2875','2009.100.2875.0','2828727 Cumulative update package 12 (CU12) for SQL Server 2008 R2 Service Pack 1 (updated)','June 13, 2013')
, ('10.50.2874','2009.100.2874.0','2828727 Cumulative update package 12 (CU12) for SQL Server 2008 R2 Service Pack 1 (replaced)','April 15, 2013')
, ('10.50.2861','2009.100.2861.0','Microsoft Security Bulletin MS12-070','October 9, 2012')
, ('10.50.2869','2009.100.2869.0','2812683 Cumulative update package 11 (CU11) for SQL Server 2008 R2 Service Pack 1','February 18, 2013')
, ('10.50.2868','2009.100.2868.0','2783135 Cumulative update package 10 (CU10) for SQL Server 2008 R2 Service Pack 1','December 17, 2012')
, ('10.50.2866','2009.100.2866.0','2756574 Cumulative update package 9 (CU9) for SQL Server 2008 R2 Service Pack 1','November 6, 2012')
, ('10.50.2861','2009.100.2861.0','2716439 MS12-070: Description of the security update for SQL Server 2008 R2 Service Pack 1 QFE: October 9, 2012','October 9, 2012')
, ('10.50.2822','2009.100.2822.0','2723743 Cumulative update package 8 (CU8) for SQL Server 2008 R2 Service Pack 1','August 29, 2012')
, ('10.50.2817','2009.100.2817.0','2703282 Cumulative update package 7 (CU7) for SQL Server 2008 R2 Service Pack 1','June 18, 2012')
, ('10.50.2811','2009.100.2811.0','2679367 Cumulative update package 6 (CU6) for SQL Server 2008 R2 Service Pack 1','April 16, 2012')
, ('10.50.2807','2009.100.2807.0','2675522 FIX: Access violation when you run DML statements against a table that has partitioned indexes in SQL Server 2008 R2','March 12, 2012')
, ('10.50.2806','2009.100.2806.0','2659694 Cumulative update package 5 (CU5) for SQL Server 2008 R2 Service Pack 1','February 22, 2012')
, ('10.50.2799','2009.100.2799.0','2633357 FIX: "Non-yielding Scheduler" error might occur when you run a query that uses the CHARINDEX function in SQL Server 2008 R2','February 22, 2012')
, ('10.50.2796','2009.100.2796.0','2633146 Cumulative update package 4 (CU4) for SQL Server 2008 R2 Service Pack 1','December 20, 2011')
, ('10.50.2789','2009.100.2789.0','2591748 Cumulative update package 3 (CU3) for SQL Server 2008 R2 Service Pack 1','October 17, 2011')
, ('10.50.2776','2009.100.2776.0','2606883 FIX: Slow performance when an AFTER trigger runs on a partitioned table in SQL Server 2008 R2','October 18, 2011')
, ('10.50.2772','2009.100.2772.0','2567714 Cumulative update package 2 (CU2) for SQL Server 2008 R2 Service Pack 1','August 15, 2011')
, ('10.50.2769','2009.100.2769.0','2544793 Cumulative update package 1 (CU1) for SQL Server 2008 R2 Service Pack 1','July 18, 2011')
, ('10.50.2550','2009.100.2550.0','Microsoft Security Bulletin MS12-070','October 9, 2012')
, ('10.50.2500','2009.100.2500.0','SQL Server 2008 R2 Service Pack 1 (SP1)','July 11, 2011')
, ('10.50.1817','2009.100.1817.0','2703280 Cumulative update package 14 (CU14) for SQL Server 2008 R2','June 18, 2012')
, ('10.50.1815','2009.100.1815.0','2679366 Cumulative update package 13 (CU13) for SQL Server 2008 R2','April 17, 2012')
, ('10.50.1810','2009.100.1810.0','2659692 Cumulative update package 12 (CU12) for SQL Server 2008 R2','February 21, 2012')
, ('10.50.1809','2009.100.1809.0','2633145 Cumulative update package 11 (CU11) for SQL Server 2008 R2','January 9, 2012')
, ('10.50.1807','2009.100.1807.0','2591746 Cumulative update package 10 (CU10) for SQL Server 2008 R2','October 19, 2011')
, ('10.50.1804','2009.100.1804.0','2567713 Cumulative update package 9 (CU9) for SQL Server 2008 R2','August 16, 2011')
, ('10.50.1800','2009.100.1800.0','2574699 FIX: Database data files might be incorrectly marked as sparse in SQL Server 2008 R2 or in SQL Server 2008 even when the physical files are marked as not sparse in the file system','October 18, 2011')
, ('10.50.1797','2009.100.1797.0','2534352 Cumulative update package 8 (CU8) for SQL Server 2008 R2','June 20, 2011')
, ('10.50.1790','2009.100.1790.0','2494086 MS11-049: Description of the security update for SQL Server 2008 R2 QFE: June 14, 2011','June 17, 2011')
, ('10.50.1777','2009.100.1777.0','2507770 Cumulative update package 7 (CU7) for SQL Server 2008 R2','June 16, 2011')
, ('10.50.1769','2009.100.1769.0','2520808 FIX: Non-yielding scheduler error when you run a query that uses a TVP in SQL Server 2008 or in SQL Server 2008 R2 if SQL Profiler or SQL Server Extended Events is used','April 18, 2011')
, ('10.50.1765','2009.100.1765.0','2489376 Cumulative update package 6 (CU6) for SQL Server 2008 R2','February 21, 2011')
, ('10.50.1753','2009.100.1753.0','2438347 Cumulative update package 5 (CU5) for SQL Server 2008 R2','December 23, 2010')
, ('10.50.1746','2009.100.1746.0','2345451 Cumulative update package 4 (CU4) for SQL Server 2008 R2','October 18, 2010')
, ('10.50.1734','2009.100.1734.0','2261464 Cumulative update package 3 (CU3) for SQL Server 2008 R2','August 20, 2010')
, ('10.50.1720','2009.100.1720.0','2072493 Cumulative update package 2 (CU2) for SQL Server 2008 R2','June 25, 2010')
, ('10.50.1702','2009.100.1702.0','981355 Cumulative update package 1 (CU1) for SQL Server 2008 R2','May 18, 2010')
, ('10.50.1617','2009.100.1617.0','2494088 MS11-049: Description of the security update for SQL Server 2008 R2 GDR: June 14, 2011','June 14, 2011')
, ('10.50.1600','2009.100.1600.1','SQL Server 2008 R2 RTM','April 21, 2010')
, ('10.50.1352','2009.100.1352.12','Microsoft SQL Server 2008 R2 November Community Technology Preview (CTP)','November 12, 2009')
, ('10.50.1092','2009.100.1092.20','Microsoft SQL Server 2008 R2 August Community Technology Preview (CTP)','June 30, 2009')
, ('10.00.6547','2007.100.6547.0','Intermittent service terminations occur after you install any SQL Server 2008 or SQL Server 2008 R2 versions from KB3135244','March 3, 2016')
, ('10.00.6543','2007.100.6543.0','TLS 1.2 support for SQL Server 2008 SP4','January 27, 2016')
, ('10.00.6535','2007.100.6535.0','3045308 MS15-058: Description of the security update for SQL Server 2008 Service Pack 4 QFE: July 14, 2015','July 14, 2015')
, ('10.00.6526','2007.100.6526.0','3034373 An on-demand hotfix update package is available for SQL Server 2008 Service Pack 4 (SP4)','February 9, 2015')
, ('10.00.6241','2007.100.6241.0','3045311 MS15-058: Description of the security update for SQL Server 2008 Service Pack 4 GDR: July 14, 2015','July 14, 2015')
, ('10.00.6000','2007.100.6000.0','SQL Server 2008 Service Pack 4 (SP4)','September 30, 2014')
, ('10.00.5894','2007.100.5894.0','TLS 1.2 support for SQL Server 2008 SP3 (IA-64 only)','January 27, 2016')
, ('10.00.5890','2007.100.5890.0','3045303 MS15-058: Description of the security update for SQL Server 2008 Service Pack 3 QFE: July 14, 2015','July 14, 2015')
, ('10.00.5869','2007.100.5869.0','2977322 MS14-044: Description of the security update for SQL Server 2008 SP3 (QFE)','August 12, 2014')
, ('10.00.5867','2007.100.5867.0','2877204 FIX: Error 8985 when you run the "dbcc shrinkfile" statement by using the logical name of a file in SQL Server 2008 R2 or SQL Server 2008','July 2, 2014')
, ('10.00.5861','2007.100.5861.0','2958696 Cumulative update package 17 (CU17) for SQL Server 2008 Service Pack 3','May 19, 2014')
, ('10.00.5852','2007.100.5852.0','2936421 Cumulative update package 16 (CU16) for SQL Server 2008 Service Pack 3','March 17, 2014')
, ('10.00.5850','2007.100.5850.0','2923520 Cumulative update package 15 (CU15) for SQL Server 2008 Service Pack 3','January 20, 2014')
, ('10.00.5848','2007.100.5848.0','2893410 Cumulative update package 14 (CU14) for SQL Server 2008 Service Pack 3','November 18, 2013')
, ('10.00.5846','2007.100.5846.0','2880350 Cumulative update package 13 (CU13) for SQL Server 2008 Service Pack 3','September 16, 2013')
, ('10.00.5844','2007.100.5844.0','2863205 Cumulative update package 12 (CU12) for SQL Server 2008 Service Pack 3','July 16, 2013')
, ('10.00.5841','2007.100.5841.0','2834048 Cumulative update package 11 (CU11) for SQL Server 2008 Service Pack 3 (updated)','June 13, 2013')
, ('10.00.5840','2007.100.5840.0','2834048 Cumulative update package 11 (CU11) for SQL Server 2008 Service Pack 3 (replaced)','May 20, 2013')
, ('10.00.5835','2007.100.5835.0','2814783 Cumulative update package 10 (CU10) for SQL Server 2008 Service Pack 3','March 18, 2013')
, ('10.00.5829','2007.100.5829.0','2799883 Cumulative update package 9 (CU9) for SQL Server 2008 Service Pack 3','January 23, 2013')
, ('10.00.5828','2007.100.5828.0','2771833 Cumulative update package 8 (CU8) for SQL Server 2008 Service Pack 3','November 19, 2012')
, ('10.00.5826','2007.100.5826.0','2716435 Microsoft Security Bulletin MS12-070','October 9, 2012')
, ('10.00.5794','2007.100.5794.0','2738350 Cumulative update package 7 (CU7) for SQL Server 2008 Service Pack 3','September 21, 2012')
, ('10.00.5788','2007.100.5788.0','2715953 Cumulative update package 6 (CU6) for SQL Server 2008 Service Pack 3','July 16, 2012')
, ('10.00.5785','2007.100.5785.0','2696626 Cumulative update package 5 (CU5) for SQL Server 2008 Service Pack 3','May 19, 2012')
, ('10.00.5775','2007.100.5775.0','2673383 Cumulative update package 4 (CU4) for SQL Server 2008 Service Pack 3','March 20, 2012')
, ('10.00.5770','2007.100.5770.0','2648098 Cumulative update package 3 (CU3) for SQL Server 2008 Service Pack 3','January 16, 2012')
, ('10.00.5768','2007.100.5768.0','2633143 Cumulative update package 2 (CU2) for SQL Server 2008 Service Pack 3','November 22, 2011')
, ('10.00.5766','2007.100.5766.0','2617146 Cumulative update package 1 (CU1) for SQL Server 2008 Service Pack 3','October 18, 2011')
, ('10.00.5544','2007.100.5544.0','TLS 1.2 support for SQL Server 2008 SP3 GDR (IA-64 only)','January 27, 2016')
, ('10.00.5538','2007.100.5538.0','3045305 MS15-058: Description of the security update for SQL Server 2008 Service Pack 3 GDR: July 14, 2015','July 14, 2015')
, ('10.00.5520','2007.100.5520.0','2977321 MS14-044: Description of the security update for SQL Server 2008 SP3 (GDR)','August 12, 2014')
, ('10.00.5512','2007.100.5512.0','Microsoft Security Bulletin MS12-070','October 9, 2012')
, ('10.00.5500','2007.100.5500.0','SQL Server 2008 Service Pack 3 (SP3)','October 6, 2011')
, ('10.00.5416','2007.100.5416.0','SQL Server 2008 Service Pack 3 CTP','August 22, 2011')
, ('10.00.4371','2007.100.4371.0','Microsoft Security Bulletin MS12-070','October 9, 2012')
, ('10.00.4333','2007.100.4333.0','2715951 Cumulative update package 11 (CU11) for SQL Server 2008 Service Pack 2','July 16, 2012')
, ('10.00.4332','2007.100.4332.0','2696625 Cumulative update package 10 (CU10) for SQL Server 2008 Service Pack 2','May 20, 2012')
, ('10.00.4330','2007.100.4330.0','2673382 Cumulative update package 9 (CU9) for SQL Server 2008 Service Pack 2','March 19, 2012')
, ('10.00.4326','2007.100.4326.0','2648096 Cumulative update package 8 (CU8) for SQL Server 2008 Service Pack 2','January 30, 2012')
, ('10.00.4323','2007.100.4323.0','2617148 Cumulative update package 7 (CU7) for SQL Server 2008 Service Pack 2','November 21, 2011')
, ('10.00.4321','2007.100.4321.0','2582285 Cumulative update package 6 (CU6) for SQL Server 2008 Service Pack 2','September 20, 2011')
, ('10.00.4316','2007.100.4316.0','2555408 Cumulative update package 5 (CU5) for SQL Server 2008 Service Pack 2','July 18, 2011')
, ('10.00.4285','2007.100.4285.0','2527180 Cumulative update package 4 (CU4) for SQL Server 2008 Service Pack 2','May 16, 2011')
, ('10.00.4279','2007.100.4279.0','2498535 Cumulative update package 3 (CU3) for SQL Server 2008 Service Pack 2','March 11, 2011')
, ('10.00.4272','2007.100.4272.0','2467239 Cumulative update package 2 (CU2) for SQL Server 2008 Service Pack 2','February 10, 2011')
, ('10.00.4266','2007.100.4266.0','2289254 Cumulative update package 1 (CU1) for SQL Server 2008 Service Pack 2','November 15, 2010')
, ('10.00.4067','2007.100.4067.0','Microsoft Security Bulletin MS12-070','October 9, 2012')
, ('10.00.4064','2007.100.4064.0','2494089 MS11-049: Description of the security update for SQL Server 2008 Service Pack 2 GDR: June 14, 2011','June 14, 2011')
, ('10.00.4000','2007.100.4000.0','SQL Server 2008 Service Pack 2 (SP2)','September 29, 2010')
, ('10.00.3798','2007.100.3798.0','SQL Server 2008 Service Pack 2 CTP','July 7, 2010')
, ('10.00.2850','2007.100.2850.0','2582282 Cumulative update package 16 (CU16) for SQL Server 2008 Service Pack 1','September 19, 2011')
, ('10.00.2847','2007.100.2847.0','2555406 Cumulative update package 15 (CU15) for SQL Server 2008 Service Pack 1','July 18, 2011')
, ('10.00.2841','2007.100.2841.0','2494100 MS11-049: Description of the security update for SQL Server 2008 Service Pack 1 QFE: June 14, 2011','June 14, 2011')
, ('10.00.2821','2007.100.2821.0','2527187 Cumulative update package 14 (CU14) for SQL Server 2008 Service Pack 1','May 16, 2011')
, ('10.00.2816','2007.100.2816.0','2497673 Cumulative update package 13 (CU13) for SQL Server 2008 Service Pack 1','March 22, 2011')
, ('10.00.2808','2007.100.2808.0','2467236 Cumulative update package 12 (CU12) for SQL Server 2008 Service Pack 1','February 10, 2011')
, ('10.00.2804','2007.100.2804.0','2413738 Cumulative update package 11 (CU11) for SQL Server 2008 Service Pack 1','November 15, 2010')
, ('10.00.2799','2007.100.2799.0','2279604 Cumulative update package 10 (CU10) for SQL Server 2008 Service Pack 1','September 21, 2010')
, ('10.00.2789','2007.100.2789.0','2083921 Cumulative update package 9 (CU9) for SQL Server 2008 Service Pack 1','July 21, 2010')
, ('10.00.2787','2007.100.2787.0','2231277 FIX: The Reporting Services service stops unexpectedly after you apply SQL Server 2008 SP1 CU 7 or CU8','July 30, 2010')
, ('10.00.2775','2007.100.2775.0','981702 Cumulative update package 8 (CU8) for SQL Server 2008 Service Pack 1','May 17, 2010')
, ('10.00.2766','2007.100.2766.0','979065 Cumulative update package 7 (CU7) for SQL Server 2008 Service Pack 1','March 26, 2010')
, ('10.00.2757','2007.100.2757.0','977443 Cumulative update package 6 (CU6) for SQL Server 2008 Service Pack 1','January 18, 2010')
, ('10.00.2746','2007.100.2746.0','975977 Cumulative update package 5 (CU5) for SQL Server 2008 Service Pack 1','November 16, 2009')
, ('10.00.2740','2007.100.2740.0','976761 FIX: Error message when you perform a rolling upgrade in a SQL Server 2008 cluster : "18401, Login failed for user SQLTEST\AgentService. Reason: Server is in script upgrade mode. Only administrator can connect at this time.[SQLState 42000]"','November 24, 2009')
, ('10.00.2734','2007.100.2734.0','973602 Cumulative update package 4 (CU4) for SQL Server 2008 Service Pack 1','September 22, 2009')
, ('10.00.2723','2007.100.2723.0','971491 Cumulative update package 3 (CU3) for SQL Server 2008 Service Pack 1','July 21, 2009')
, ('10.00.2714','2007.100.2714.0','970315 Cumulative update package 2 (CU2) for SQL Server 2008 Service Pack 1','May 18, 2009')
, ('10.00.2712','2007.100.2712.0','970507 FIX: Error message in SQL Server 2008 when you run an INSERT SELECT statement on a table: "Violation of PRIMARY KEY constraint ''<PrimaryKey>''. Cannot insert duplicate key in object ''<TableName>''"','July 21, 2009')
, ('10.00.2710','2007.100.2710.0','969099 Cumulative update package 1 (CU1) for SQL Server 2008 Service Pack 1','April 16, 2009')
, ('10.00.2573','2007.100.2573.0','2494096 MS11-049: Description of the security update for SQL Server 2008 Service Pack 1 GDR: June 14, 2011','June 14, 2011')
, ('10.00.2531','2007.100.2531.0','SQL Server 2008 Service Pack 1 (SP1)','April 7, 2009')
, ('10.00.2520','2007.100.2520.0','SQL Server 2008 Service Pack 1 - CTP','February 23, 2009')
, ('10.00.1835','2007.100.1835.0','979064 Cumulative update package 10 (CU10) for SQL Server 2008','March 15, 2010')
, ('10.00.1828','2007.100.1828.0','977444 Cumulative update package 9 (CU9) for SQL Server 2008','January 18, 2010')
, ('10.00.1823','2007.100.1823.0','975976 Cumulative update package 8 (CU8) for SQL Server 2008','November 16, 2009')
, ('10.00.1818','2007.100.1818.0','973601 Cumulative update package 7 (CU7) for SQL Server 2008','September 21, 2009')
, ('10.00.1812','2007.100.1812.0','971490 Cumulative update package 6 (CU6) for SQL Server 2008','July 21, 2009')
, ('10.00.1806','2007.100.1806.0','969531 Cumulative update package 5 (CU5) for SQL Server 2008','May 18, 2009')
, ('10.00.1798','2007.100.1798.0','963036 Cumulative update package 4 (CU4) for SQL Server 2008','March 17, 2009')
, ('10.00.1787','2007.100.1787.0','960484 Cumulative update package 3 (CU3) for SQL Server 2008','January 19, 2009')
, ('10.00.1779','2007.100.1779.0','958186 Cumulative update package 2 (CU2) for SQL Server 2008','November 19, 2008')
, ('10.00.1771','2007.100.1771.0','958611 FIX: You may receive incorrect results when you run a query that references three or more tables in the FROM clause in SQL Server 2008','October 29, 2008')
, ('10.00.1763','2007.100.1763.0','956717 Cumulative update package 1 (CU1) for SQL Server 2008','October 28, 2008')
, ('10.00.1750','2007.100.1750.0','956718 FIX: A MERGE statement may not enforce a foreign key constraint when the statement updates a unique key column that is not part of a clustering key that has a single row as the update source in SQL Server 2008','August 25, 2008')
, ('10.00.1600','2007.100.1600.22','SQL Server 2008 RTM','August 7, 2008')
, ('10.00.1442','2007.100.1442.32','Microsoft SQL Server 2008 RC0','June 5, 2008')
, ('10.00.1300','2007.100.1300.13','Microsoft SQL Server 2008 CTP, February 2008','February 19, 2008')
, ('10.00.1075','2007.100.1075.23','Microsoft SQL Server 2008 CTP, November 2007','November 18, 2007')
, ('10.00.1049','2007.100.1049.14','SQL Server 2008 CTP, July 2007','July 31, 2007')
, ('10.00.1019','2007.100.1019.17','SQL Server 2008 CTP, June 2007','May 21, 2007')
, ('9.00.5324','2005.90.5324.0','2716427 MS12-070: Description of the security update for SQL Server 2005 Service Pack 4 QFE','October 9, 2012')
, ('9.00.5296','2005.90.5296.0','2615425 FIX: "Msg 7359" error when a view uses another view in SQL Server 2005 if the schema version of a remote table is updated','October 24, 2011')
, ('9.00.5295','2005.90.5295.0','2598903 FIX: SQL Server Agent job randomly stops when you schedule the job to run past midnight on specific days in SQL Server 2005, in SQL Server 2008 or in SQL Server 2008 R2','May 21, 2012')
, ('9.00.5294','2005.90.5294.0','2572407 FIX: Error 5180 when you use the ONLINE option to rebuild an index in SQL Server 2005','August 10, 2011')
, ('9.00.5292','2005.90.5292.0','2494123 MS11-049: Description of the security update for SQL Server 2005 Service Pack 4 QFE: June 14, 2011','June 14, 2011')
, ('9.00.5266','2005.90.5266.0','2507769 Cumulative update package 3 (CU3) for SQL Server 2005 Service Pack 4','March 22, 2011')
, ('9.00.5259','2005.90.5259.0','2489409 Cumulative update package 2 (CU2) for SQL Server 2005 Service Pack 4','February 22, 2011')
, ('9.00.5254','2005.90.5254.0','2464079 Cumulative update package 1 (CU1) for SQL Server 2005 Service Pack 4','December 24, 2010')
, ('9.00.5069','2005.90.5069.0','Microsoft Security Bulletin MS12-070','October 9, 2012')
, ('9.00.5057','2005.90.5057.0','2494120 MS11-049: Description of the security update for SQL Server 2005 Service Pack 4 GDR: June 14, 2011','June 14, 2011')
, ('9.00.5000','2005.90.5000.0','SQL Server 2005 Service Pack 4 (SP4)','December 17, 2010')
, ('9.00.4912','2005.90.4912.0','SQL Server 2005 Service Pack 4 (SP4) - Customer Technology Preview (CTP)','November 3, 2010')
, ('9.00.4342','2005.90.4342.0','2598903 FIX: SQL Server Agent job randomly stops when you schedule the job to run past midnight on specific days in SQL Server 2005, in SQL Server 2008 or in SQL Server 2008 R2','May 21, 2012')
, ('9.00.4340','2005.90.4340.0','2494112 MS11-049: Description of the security update for SQL Server 2005 Service Pack 3 QFE: June 14, 2011','June 14, 2011')
, ('9.00.4325','2005.90.4325.0','2507766 Cumulative update package 15 (CU15) for SQL Server 2005 Service Pack 3','March 22, 2011')
, ('9.00.4317','2005.90.4317.0','2489375 Cumulative update package 14 (CU14) for SQL Server 2005 Service Pack 3','February 21, 2011')
, ('9.00.4315','2005.90.4315.0','2438344 Cumulative update package 13 (CU13) for SQL Server 2005 Service Pack 3','December 23, 2010')
, ('9.00.4311','2005.90.4311.0','2345449 Cumulative update package 12 (CU12) for SQL Server 2005 Service Pack 3','October 18, 2010')
, ('9.00.4309','2005.90.4309.0','2258854 Cumulative update package 11 (CU11) for SQL Server 2005 Service Pack 3','August 16, 2010')
, ('9.00.4305','2005.90.4305.0','983329 Cumulative update package 10 (CU10) for SQL Server 2005 Service Pack 3','June 23, 2010')
, ('9.00.4294','2005.90.4294.0','980176 Cumulative update package 9 (CU9) for SQL Server 2005 Service Pack 3','April 19, 2010')
, ('9.00.4285','2005.90.4285.0','978915 Cumulative update package 8 (CU8) for SQL Server 2005 Service Pack 3','February 16, 2010')
, ('9.00.4273','2005.90.4273.0','976951 Cumulative update package 7 (CU7) for SQL Server 2005 Service Pack 3','December 21, 2009')
, ('9.00.4268','2005.90.4268.0','977151 FIX: Error message when you add a subscription to a republisher that is in a merge publication in SQL Server 2005: "Cannot create the subscription because the subscription already exists in the subscription database"','December 21, 2009')
, ('9.00.4266','2005.90.4266.0','974648 Cumulative update package 6 (CU6) for SQL Server 2005 Service Pack 3','October 19, 2009')
, ('9.00.4262','2005.90.4262.0','970894 MS09-062: Description of the security update for SQL Server 2005 Service Pack 3 QFE: October 13, 2009','October 13, 2009')
, ('9.00.4230','2005.90.4230.0','972511 Cumulative update package 5 (CU5) for SQL Server 2005 Service Pack 3','August 17, 2009')
, ('9.00.4226','2005.90.4226.0','970279 Cumulative update package 4 (CU4) for SQL Server 2005 Service Pack 3','June 16, 2009')
, ('9.00.4224','2005.90.4224.0','971409 FIX: Error message when you run a query that contains duplicate join conditions in SQL Server 2005: "Internal Query Processor Error: The query processor could not produce a query plan"','June 16, 2009')
, ('9.00.4220','2005.90.4220.0','967909 Cumulative update package 3 (CU3) for SQL Server 2005 Service Pack 3','April 20, 2009')
, ('9.00.4216','2005.90.4216.0','967101 FIX: The performance of database mirroring decreases when you run a database maintenance job that generates a large number of transaction log activities in SQL Server 2005','April 20, 2009')
, ('9.00.4211','2005.90.4211.0','961930 Cumulative update package 2 (CU2) for SQL Server 2005 Service Pack 3','February 17, 2009')
, ('9.00.4207','2005.90.4207.0','959195 Cumulative update package 1 (CU1) for SQL Server 2005 Service Pack 3','December 20, 2008')
, ('9.00.4060','2005.90.4060.0','2494113 MS11-049: Description of the security update for SQL Server 2005 Service Pack 3 GDR: June 14, 2011','June 14, 2011')
, ('9.00.4053','2005.90.4053.0','970892 MS09-062: Description of the security update for SQL Server 2005 Service Pack 3 GDR: October 13, 2009','October 13, 2009')
, ('9.00.4035','2005.90.4035.0','SQL Server 2005 Service Pack 3 (SP3)','December 15, 2008')
, ('9.00.4028','2005.90.4028.0','SQL Server 2005 Service Pack 3 (SP3) - CTP','October 27, 2008')
, ('9.00.3356','2005.90.3356.0','976952 Cumulative update package 17 (CU17) for SQL Server 2005 Service Pack 2','December 21, 2009')
, ('9.00.3355','2005.90.3355.0','974647 Cumulative update package 16 (CU16) for SQL Server 2005 Service Pack 2','October 19, 2009')
, ('9.00.3353','2005.90.3353.0','970896 MS09-062: Description of the security update for SQL Server 2005 Service Pack 2 QFE: October 13, 2009','October 13, 2009')
, ('9.00.3330','2005.90.3330.0','972510 Cumulative update package 15 (CU15) for SQL Server 2005 Service Pack 2','August 18, 2009')
, ('9.00.3328','2005.90.3328.0','970278 Cumulative update package 14 (CU14) for SQL Server 2005 Service Pack 2','June 16, 2009')
, ('9.00.3325','2005.90.3325.0','967908 Cumulative update package 13 (CU13) for SQL Server 2005 Service Pack 2','April 20, 2009')
, ('9.00.3320','2005.90.3320.0','969142 FIX: Error message when you run the DBCC CHECKDB statement on a database in SQL Server 2005: "Unable to deallocate a kept page"','April 1, 2009')
, ('9.00.3318','2005.90.3318.0','967199 FIX: The Wmiprvse.exe host process stops responding when you run a SQL Server 2005-based application that sends a Windows Management Instrumentation (WMI) query to the SQL Server WMI provider','April 20, 2009')
, ('9.00.3315','2005.90.3315.0','962970 Cumulative update package 12 (CU12) for SQL Server 2005 Service Pack 2','February 17, 2009')
, ('9.00.3310','2005.90.3310.0','960090 MS09-004: Description of the security update for SQL Server 2005 QFE: February 10, 2009','February 10, 2009')
, ('9.00.3301','2005.90.3301.0','958735 Cumulative update package 11 (CU11) for SQL Server 2005 Service Pack 2','December 16, 2008')
, ('9.00.3294','2005.90.3294.0','956854 Cumulative update package 10 (CU10) for SQL Server 2005 Service Pack 2','October 20, 2008')
, ('9.00.3282','2005.90.3282.0','953752 Cumulative update package 9 (CU9) for SQL Server 2005 Service Pack 2','June 16, 2008')
, ('9.00.3260','2005.90.3260.0','954950 FIX: Error message when you run a distributed query in SQL Server 2005: "OLE DB provider ''SQLNCLI'' for linked server ''<Linked Server>'' returned message ''No transaction is active''"','July 14, 2008')
, ('9.00.3259','2005.90.3259.0','954831 FIX: In SQL Server 2005, the session that runs the TRUNCATE TABLE statement may stop responding, and you cannot end the session','August 14, 2008')
, ('9.00.3259','2005.90.3259.0','954669 FIX: An ongoing MS DTC transaction is orphaned in SQL Server 2005','July 14, 2008')
, ('9.00.3257','2005.90.3257.0','951217 Cumulative update package 8 (CU8) for SQL Server 2005 Service Pack 2','June 18, 2008')
, ('9.00.3246','2005.90.3246.0','952233 FIX: All the MDX queries that are running on an instance of SQL Server 2005 Analysis Services are canceled when you start or stop a SQL Server Profiler trace for the instance','May 23, 2008')
, ('9.00.3244','2005.90.3244.0','952330 FIX: The Replication Log Reader Agent may fail intermittently when a transactional replication synchronizes data in SQL Server 2005','June 3, 2008')
, ('9.00.3240','2005.90.3240.0','951204 FIX: An access violation occurs when you update a table through a view by using a cursor in SQL Server 2005','May 21, 2008')
, ('9.00.3239','2005.90.3239.0','949095 Cumulative update package 7 (CU7) for SQL Server 2005 Service Pack 2','April 17, 2008')
, ('9.00.3232','2005.90.3232.0','949959 FIX: Error message when you synchronize the data of a merge replication in SQL Server 2005: "The merge process is retrying a failed operation made to article ''ArticleName'' - Reason: ''Invalid input parameter values. Check the status values for detail.''"','March 19, 2008')
, ('9.00.3231','2005.90.3231.0','949595 FIX: Error message when you run a query that uses a join condition in SQL Server 2005: "Non-yielding Scheduler"','March 18, 2008')
, ('9.00.3231','2005.90.3231.0','949687 FIX: Error message when you run a transaction from a remote server by using a linked server in SQL Server 2005: "This operation conflicts with another pending operation on this transaction"','March 14, 2008')
, ('9.00.3230','2005.90.3230.0','949199 FIX: Error message when you run queries on a database that has the SNAPSHOT isolation level enabled in SQL Server 2005: "Unable to deallocate a kept page"','March 7, 2008')
, ('9.00.3228','2005.90.3228.0','946608 Cumulative update package 6 (CU6) for SQL Server 2005 Service Pack 2','February 19, 2008')
, ('9.00.3224','2005.90.3224.0','947463 FIX: A stored procedure cannot finish its execution in SQL Server 2005','February 4, 2008')
, ('9.00.3221','2005.90.3221.0','942908 FIX: The change may be undone during the later synchronizations when you change an article on the subscriber in SQL Server 2005','January 31, 2008')
, ('9.00.3221','2005.90.3221.0','945443 FIX: A query takes longer to finish in SQL Server 2005 than in SQL Server 2000 when you open a fast forward-only cursor for the query','January 11, 2008')
, ('9.00.3221','2005.90.3221.0','945916 FIX: Error messages when you delete some records of a table in a transaction or when you update some records of a table in a transaction in SQL Server 2005: "Msg 9002," "Msg 3314," and "Msg 9001"','January 10, 2008')
, ('9.00.3221','2005.90.3221.0','945442 FIX: You cannot cancel the query execution immediately if you open a fast forward-only cursor for the query in SQL Server 2005','January 9, 2008')
, ('9.00.3215','2005.90.3215.0','943656 Cumulative update package 5 (CU5) for SQL Server 2005 Service Pack 2','December 18, 2007')
, ('9.00.3208','2005.90.3208.0','944902 FIX: A federated database server stops responding when you run parallel queries on a multiprocessor computer that uses NUMA architecture in SQL Server 2005','November 21, 2007')
, ('9.00.3206','2005.90.3206.0','944677 FIX: Conflicts are not logged when you use the Microsoft SQL Server Subscriber Always Wins Conflict Resolver for an article in a merge replication in Microsoft SQL Server 2005','December 11, 2007')
, ('9.00.3200','2005.90.3200.0','941450 Cumulative update package 4 (CU4) for SQL Server 2005 Service Pack 2','October 17, 2007')
, ('9.00.3194','2005.90.3194.0','940933 FIX: Some changes from subscribers who use SQL Server 2005 Compact Edition or Web synchronization are not uploaded to the publisher when you use the republishing model in a merge publication in Microsoft SQL Server 2005','September 24, 2007')
, ('9.00.3186','2005.90.3186.0','940943 FIX: The performance of a query that performs an insert operation or an update operation is much slower in SQL Server 2005 SP2 than in earlier versions of SQL Server 2005','August 29, 2007')
, ('9.00.3186','2005.90.3186.0','940378 FIX: A cursor uses the incorrect transaction isolation level after you change the transaction isolation level for the cursor in SQL Server 2005','August 24, 2007')
, ('9.00.3186','2005.90.3186.0','940269 FIX: Error message when you try to edit a SQL Server Agent job or a maintenance plan by using SQL Server Management Studio in SQL Server 2005: "String or binary data would be truncated"','August 23, 2007')
, ('9.00.3186','2005.90.3186.0','940945 FIX: Performance is very slow when the same stored procedure is executed at the same time in many connections on a multiple-processor computer that is running SQL Server 2005','August 22, 2007')
, ('9.00.3186','2005.90.3186.0','940937 FIX: Error message when you try to update the index key columns of a non-unique clustered index in SQL Server 2005: "Cannot insert duplicate key row in object ''ObjectName'' with unique index ''IndexName''"','August 21, 2007')
, ('9.00.3186','2005.90.3186.0','940379 FIX: Error message when you use the UNLOAD and REWIND options to back up a database to a tape device in SQL Server 2005: "Operation on device ''<TapeDevice>'' exceeded retry count"','August 20, 2007')
, ('9.00.3186','2005.90.3186.0','940375 FIX: Error message when you use the Copy Database Wizard to move a database from SQL Server 2000 to SQL Server 2005','August 20, 2007')
, ('9.00.3186','2005.90.3186.0','937100 FIX: Error message when you run a SQL Server 2005 Integration Services package that contains a Script Component transformation:"Insufficient memory to continue the execution of the program"','August 20, 2007')
, ('9.00.3186','2005.90.3186.0','940126 FIX: Error 9003 is logged in the SQL Server error log file when you use log shipping in SQL Server 2005','August 20, 2007')
, ('9.00.3186','2005.90.3186.0','938363 FIX: Data is not replicated to a subscriber in a different partition by using parameterized row filters in SQL Server 2005','August 17, 2007')
, ('9.00.3186','2005.90.3186.0','940935 FIX: Error message when you run a query that is associated with a parallel execution plan in SQL Server 2005: "SQL Server Assertion: File: <lckmgr.cpp>, line=10850 Failed Assertion = ''GetLocalLockPartition () == xactLockInfo->GetLocalLockPartition ()''"','August 17, 2007')
, ('9.00.3186','2005.90.3186.0','940221 FIX: Error message when you try to create an Oracle publication by using the New Publication Wizard in SQL Server 2005 Service Pack 2: "OLE DB Provider ''OraOLEDB.ORACLE'' for Linked server <LinkedServerName> returned message"','August 17, 2007')
, ('9.00.3186','2005.90.3186.0','940942 FIX: Error message when you run a stored procedure that references tables after you upgrade a database from SQL Server 2000 to SQL Server 2005: "A time-out occurred while waiting for buffer latch"','August 17, 2007')
, ('9.00.3186','2005.90.3186.0','940384 FIX: You receive a System.InvalidCastException exception when you run an application that calls the Server.JobServer.Jobs.Contains method on a computer that has SQL Server 2005 Service Pack 2 installed','August 13, 2007')
, ('9.00.3186','2005.90.3186.0','940281 FIX: An access violation may occur, and you may receive an error message, when you query the sys.dm_exe_sessions dynamic management view in SQL Server 2005','August 13, 2007')
, ('9.00.3186','2005.90.3186.0','940545 FIX: The performance of insert operations against a table that contains an identity column may be slow in SQL Server 2005','August 10, 2007')
, ('9.00.3186','2005.90.3186.0','940210 FIX: Error message when you try to insert more than 3 megabytes of data into a distributed partitioned view in SQL Server 2005: "A system assertion check has failed"','August 8, 2007')
, ('9.00.3186','2005.90.3186.0','939537 Cumulative update package 3 (CU3) for SQL Server 2005 Service Pack 2','August 23, 2007')
, ('9.00.3182','2005.90.3182.0','940128 FIX: You receive error 8623 when you run a complex query in SQL Server 2005','August 3, 2007')
, ('9.00.3179','2005.90.3179.0','938243 FIX: Error message when you run a full-text query against a catalog in SQL Server 2005: "The execution of a full-text query failed. The content index is corrupt."','July 30, 2007')
, ('9.00.3178','2005.90.3178.0','938086 FIX: A SQL Server Agent job fails when you run the SQL Server Agent job in the context of a proxy account in SQL Server 2005','August 22, 2007')
, ('9.00.3177','2005.90.3177.0','939285 FIX: Error message when you run a stored procedure that starts a transaction that contains a Transact-SQL statement in SQL Server 2005: "New request is not allowed to start because it should come with valid transaction descriptor"','August 22, 2007')
, ('9.00.3177','2005.90.3177.0','939562 FIX: Error message when you run a query that fires an INSTEAD OF trigger in SQL Server 2005 Service Pack 2: "Internal Query Processor Error The query processor could not produce a query plan"','August 20, 2007')
, ('9.00.3177','2005.90.3177.0','939563 FIX: Error message when you synchronize a merge replication in Microsoft SQL Server 2005: "MSmerge_del_<GUID>, Line 42 String or binary data would be truncated"','August 9, 2007')
, ('9.00.3175','2005.90.3175.0','936534 FIX: Error message when the Distribution Agent tries to apply the snapshot to the subscriber in SQL Server 2005: "Must declare the scalar variable "@Variable""','August 20, 2007')
, ('9.00.3175','2005.90.3175.0','938671 FIX: The Distribution Agent may skip some rows when you configure a transactional replication that uses the "-SkipErrors" parameter in SQL Server 2005','August 1, 2007')
, ('9.00.3175','2005.90.3175.0','936488 The service pack update or hotfix installation stops unexpectedly when you try to install either Microsoft SQL Server 2005 Service Pack 2 or a hotfix for SQL Server 2005 SP2','July 10, 2007')
, ('9.00.3175','2005.90.3175.0','938825 FIX: A foreign key constraint that you drop on a table at the publisher is not dropped on the table at the subscriber in a SQL Server 2005 merge replication','June 29, 2007')
, ('9.00.3175','2005.90.3175.0','936305 Cumulative update package 2 (CU2 build 3175) for SQL Server 2005 Service Pack 2 is available','June 28, 2007')
, ('9.00.3171','2005.90.3171.0','937745 FIX: You may receive error messages when you try to log in to an instance of SQL Server 2005 and SQL Server handles many concurrent connections','July 16, 2007')
, ('9.00.3169','2005.90.3169.0','937033 FIX: Error message when you run a linked server query in SQL Server 2005: "The oledbprovider unisys.dmsII.1 for linkserver ''<ServerName>'' reported an error the provider ran out of memory"','June 19, 2007')
, ('9.00.3169','2005.90.3169.0','937041 FIX: Changes in the publisher database are not replicated to the subscribers in a transactional replication if the publisher database runs exposed in a database mirroring session in SQL Server 2005','May 25, 2007')
, ('9.00.3166','2005.90.3166.0','936185 FIX: Blocking and performance problems may occur when you enable trace flag 1118 in SQL Server 2005 if the temporary table creation workload is high','June 11, 2007')
, ('9.00.3166','2005.90.3166.0','934734 FIX: A database is marked as suspect when you update a table that contains a nonclustered index in SQL Server 2005','July 16, 2007')
, ('9.00.3161','2005.90.3161.0','935789 FIX: On a computer that is running SQL Server 2005 and that has multiple processors, you may receive incorrect results when you run a query that contains an inner join','September 24, 2007')
, ('9.00.3161','2005.90.3161.0','934706 FIX: Error message when you perform a piecemeal restore operation after you enable vardecimal database compression in SQL Server 2005 Service Pack 2: "Piecemeal restore is not supported when an upgrade is involved"','June 4, 2007')
, ('9.00.3161','2005.90.3161.0','933724 FIX: The query performance is slow when you run a query that uses a user-defined scalar function against an instance of SQL Server 2005','May 9, 2007')
, ('9.00.3161','2005.90.3161.0','935356 Cumulative update package (CU1 build 3161) for SQL Server 2005 Service Pack 2 is available','April 16, 2007')
, ('9.00.3159','2005.90.3159.0','934459 FIX: The Check Database Integrity task and the Execute T-SQL Statement task in a maintenance plan may lose database context in certain circumstances in SQL Server 2005 builds 3150 through 3158','April 3, 2007')
, ('9.00.3156','2005.90.3156.0','934226 FIX: Error message when you try to use Database Mail to send an e-mail message in SQL Server 2005: "profile name is not valid (Microsoft SQL Server, Error 14607)"','April 25, 2007')
, ('9.00.3155','2005.90.3155.0','933808 FIX: Error message when you run a query that contains nested FOR XML clauses in SQL Server 2005: "The XML data type is damaged"','June 13, 2007')
, ('9.00.3155','2005.90.3155.0','933499 FIX: Error message when you use transactional replication to replicate the execution of stored procedures to subscribers in SQL Server 2005: "Insufficient memory to run query"','June 12, 2007')
, ('9.00.3155','2005.90.3155.0','933766 FIX: Failed assertion message in the Errorlog file when you perform various operations in SQL Server 2005: "Failed Assertion = ''fFalse'' Attempt to access expired blob handle (3)"','May 15, 2007')
, ('9.00.3155','2005.90.3155.0','933549 FIX: You may receive an access violation when you perform a bulk copy operation in SQL Server 2005','April 25, 2007')
, ('9.00.3154','2005.90.3154.0','934188 FIX: The Distribution Agent does not deliver commands to the Subscriber even if the Distribution Agent is running in SQL Server 2005','April 25, 2007')
, ('9.00.3154','2005.90.3154.0','934109 FIX: The Distribution Agent generates an access violation when you configure a transactional replication publication to run an additional script after the snapshot is applied at the subscriber in SQL Server 2005','April 25, 2007')
, ('9.00.3154','2005.90.3154.0','934106 FIX: SQL Server 2005 database engine generates failed assertion errors when you use the Replication Monitor to monitor the distribution database','April 25, 2007')
, ('9.00.3153','2005.90.3153.0','933564 FIX: A gradual increase in memory consumption for the USERSTORE_TOKENPERM cache store occurs in SQL Server 2005','April 16, 2007')
, ('9.00.3152','2005.90.3152.0','933097 Cumulative hotfix package (build 3152) for SQL Server 2005 Service Pack 2 is available','March 7, 2007')
, ('9.00.3080','2005.90.3080.0','970895 MS09-062: Description of the security update for GDI+ for SQL Server 2005 Service Pack 2 GDR: October 13, 2009','October 13, 2009')
, ('9.00.3077','2005.90.3077.0','960089 MS09-004: Description of the security update for SQL Server 2005 GDR: February 10, 2009','February 10, 2009')
, ('9.00.3073','2005.90.3073.0','954606 MS08-052: Description of the security update for GDI+ for SQL Server 2005 Service Pack 2 GDR: September 9, 2008','September 9, 2008')
, ('9.00.3068','2005.90.3068.0','941203 MS08-040: Vulnerabilities in Microsoft SQL Server could allow elevation of privilege','August 5, 2008')
, ('9.00.3054','2005.90.3054.0','934458 FIX: The Check Database Integrity task and the Execute T-SQL Statement task in a maintenance plan may lose database context in certain circumstances in SQL Server 2005 builds 3042 through 3053','January 2, 2008')
, ('9.00.3050','2005.90.3050.0','933508 Microsoft SQL Server 2005 Service Pack 2 issue: Cleanup tasks run at different intervals than intended','March 7, 2007')
, ('9.00.3042','2005.90.3042.0','SQL Server 2005 Service Pack 2 (SP2)','February 19, 2007')
, ('9.00.3033','2005.90.3033.0','SQL Server 2005 Service Pack 2 (SP2) - CTP December 2006','December 19, 2006')
, ('9.00.3027','2005.90.3027.0','SQL Server 2005 Service Pack 2 (SP2) - CTP November 2006','November 6, 2006')
, ('9.00.3026','2005.90.3026.0','929376 FIX: A "17187" error message may be logged in the Errorlog file when an instance of SQL Server 2005 is under a heavy load','February 14, 2007')
, ('9.00.2239','2005.90.2239.0','940961 FIX: Transactions that are being committed on the principal server may not be copied to the mirror server when a database mirroring failover occurs in SQL Server 2005','September 24, 2007')
, ('9.00.2237','2005.90.2237.0','940719 FIX: A memory leak occurs when you call the Initialize method and the Terminate method of the SQLDistribution object in a loop in an application that you develop by using Microsoft ActiveX replication controls in SQL Server 2005','September 24, 2007')
, ('9.00.2236','2005.90.2236.0','940287 FIX: Error message when you use Service Broker in SQL Server 2005: "An error occurred while receiving data: ''64(The specified network name is no longer available.)''"','July 29, 2007')
, ('9.00.2236','2005.90.2236.0','940286 FIX: A Service Broker endpoint stops passing messages in a database mirroring session of SQL Server 2005','July 26, 2007')
, ('9.00.2234','2005.90.2234.0','937343 FIX: SQL Server 2005 stops and then restarts unexpectedly and errors occur in the tempdb database','June 20, 2007')
, ('9.00.2233','2005.90.2233.0','937545 FIX: Error message when you use the BULK INSERT statement to import a data file into a table in SQL Server 2005 with SP1: "The OLE DB provider "BULK" for linked server "(null)" reported an error"','June 18, 2007')
, ('9.00.2233','2005.90.2233.0','933499 FIX: Error message when you use transactional replication to replicate the execution of stored procedures to subscribers in SQL Server 2005: "Insufficient memory to run query"','June 12, 2007')
, ('9.00.2233','2005.90.2233.0','937544 FIX: You may receive error 3456 when you try to restore a transaction log for a SQL Server 2005 database','June 5, 2007')
, ('9.00.2232','2005.90.2232.0','937277 FIX: A memory leak occurs when you use the sp_OAMethod stored procedure to call a method of a COM object in SQL Server 2005','June 19, 2007')
, ('9.00.2231','2005.90.2231.0','934812 FIX: You cannot bring the SQL Server group online in a cluster environment after you rename the virtual server name of the default instance of SQL Server 2005','November 6, 2007')
, ('9.00.2230','2005.90.2230.0','936179 FIX: Error message when you use SQL Native Client to connect to an instance of a principal server in a database mirroring session: "The connection attempted to fail over to a server that does not have a failover partner"','September 20, 2007')
, ('9.00.2229','2005.90.2229.0','935446 FIX: You receive error messages when you use the BULK INSERT statement in SQL Server 2005 to import data in bulk','June 11, 2007')
, ('9.00.2227','2005.90.2227.0','933265 FIX: You may receive error 1203 when you run an INSERT statement against a table that has an identity column in SQL Server 2005','June 26, 2007')
, ('9.00.2226','2005.90.2226.0','934065 FIX: Error message when the Replication Merge Agent runs to synchronize a merge replication subscription in SQL Server 2005: "The merge process failed to execute a query because the query timed out"','June 22, 2007')
, ('9.00.2226','2005.90.2226.0','933762 FIX: You receive error 18815 when the Log Reader Agent runs for a transactional publication in SQL Server 2005','June 22, 2007')
, ('9.00.2223','2005.90.2223.0','932393 FIX: You may experience poor performance after you install SQL Server 2005 Service Pack 1','June 18, 2007')
, ('9.00.2221','2005.90.2221.0','931593 FIX: A script task or a script component may not run correctly when you run an SSIS package in SQL Server 2005 build 2153 and later builds','July 11, 2007')
, ('9.00.2219','2005.90.2219.0','932115 FIX: The ghost row clean-up thread does not remove ghost rows on some data files of a database in SQL Server 2005','April 25, 2007')
, ('9.00.2218','2005.90.2218.0','931843 FIX: SQL Server 2005 does not reclaim the disk space that is allocated to the temporary table if the stored procedure is stopped','April 25, 2007')
, ('9.00.2216','2005.90.2216.0','931821 FIX: High CPU utilization by SQL Server 2005 may occur when you use NUMA architecture on a computer that has an x64-based version of SQL Server 2005 installed','May 15, 2007')
, ('9.00.2214','2005.90.2214.0','930505 FIX: Error message when you run DML statements against a table that is published for merge replication in SQL Server 2005: "Could not find stored procedure"','February 19, 2007')
, ('9.00.2214','2005.90.2214.0','929240 FIX: I/O requests that are generated by the checkpoint process may cause I/O bottlenecks if the I/O subsystem is not fast enough to sustain the IO requests in SQL Server 2005','February 13, 2007')
, ('9.00.2211','2005.90.2211.0','930284 FIX: You receive error 1456 when you try to add a witness to a DBM session in SQL Server 2005','February 20, 2007')
, ('9.00.2211','2005.90.2211.0','930283 FIX: You receive error 1456 when you add a witness to a database mirroring session and the database name is the same as an existing database mirroring session in SQL Server 2005','February 14, 2007')
, ('9.00.2209','2005.90.2209.0','929278 FIX: SQL Server 2005 may not perform histogram amendments when you use trace flags 2389 and 2390','February 7, 2007')
, ('9.00.2208','2005.90.2208.0','929179 FIX: A memory leak may occur every time that you synchronize a SQL Server Mobile subscriber in SQL Server 2005','January 9, 2007')
, ('9.00.2207','2005.90.2207.0','928394 FIX: The changes are not reflected in the publication database after you reinitialize the subscriptions in SQL Server 2005','December 19, 2006')
, ('9.00.2207','2005.90.2207.0','928372 FIX: Error message when you use a synonym for a stored procedure in SQL Server 2005: "A severe error occurred on the current command"','December 19, 2006')
, ('9.00.2207','2005.90.2207.0','928789 FIX: Error message in the database mail log when you try to use the sp_send_dbmail stored procedure to send an e-mail in SQL Server 2005: "Invalid XML message format received on the ExternalMailQueue"','January 2, 2007')
, ('9.00.2206','2005.90.2206.0','928083 FIX: You may receive an error message when you run a CLR stored procedure or CLR function that uses a context connection in SQL Server 2005','February 1, 2007')
, ('9.00.2206','2005.90.2206.0','928537 FIX: The full-text index population for the indexed view is very slow in SQL Server 2005','January 12, 2007')
, ('9.00.2206','2005.90.2206.0','926493 FIX: Error message when you restore a transaction-log backup that is generated in SQL Server 2000 SP4 to an instance of SQL Server 2005: Msg 3456, Level 16, State 1, Line 1. Could not redo log record"','January 2, 2007')
, ('9.00.2206','2005.90.2206.0','928539 FIX: An access violation is logged in the SQL Server Errorlog file when you run a query that uses a plan guide in SQL Server 2005','December 13, 2006')
, ('9.00.2202','2005.90.2202.0','927643 FIX: Some search results are missing when you perform a full-text search operation on a Windows SharePoint Services 2.0 site after you upgrade to SQL Server 2005','February 16, 2007')
, ('9.00.2201','2005.90.2201.0','927289 FIX: Updates to the SQL Server Mobile subscriber may not be reflected in the SQL Server 2005 merge publication','January 10, 2007')
, ('9.00.2198','2005.90.2198.0','926613 FIX: You may receive incorrect results when you query a table that is published in a transactional replication in SQL Server 2005','February 21, 2007')
, ('9.00.2198','2005.90.2198.0','926106 FIX: You receive an error message when you use the Print Preview option on a large report in SQL Server 2005 Reporting Services','February 20, 2007')
, ('9.00.2198','2005.90.2198.0','924807 FIX: The restore operation may take a long time to finish when you restore a database in SQL Server 2005','February 2, 2007')
, ('9.00.2198','2005.90.2198.0','924264 FIX: The metadata of the Description object of a Key Performance Indicator appears in the default language after you define a translation for the Description object in SQL Server 2005 Business Intelligence Development Studio','December 13, 2006')
, ('9.00.2198','2005.90.2198.0','926612 FIX: SQL Server Agent does not send an alert quickly or does not send an alert when you use an alert of the SQL Server event alert type in SQL Server 2005','January 4, 2007')
, ('9.00.2198','2005.90.2198.0','926773 FIX: Error message when you run a query that uses a fast forward-only cursor in SQL Server 2005: "Query processor could not produce a query plan because of the hints defined in this query"','November 16, 2006')
, ('9.00.2198','2005.90.2198.0','926611 FIX: SQL Server 2005 may not send a message notification that is based on the specific string in the forwarded event when a computer that is running SQL Server 2000 forwards an event to a computer that is running SQL Server 2005','November 28, 2006')
, ('9.00.2198','2005.90.2198.0','924808 FIX: You receive an error message, or you obtain an incorrect result when you query data in a partitioned table that does not have a clustered index in SQL Server 2005','December 13, 2006')
, ('9.00.2198','2005.90.2198.0','925277 FIX: You may experience very large growth increments of a principal database after you manually fail over a database mirroring session in SQL Server 2005','January 2, 2007')
, ('9.00.2196','2005.90.2196.0','926285 Fix: Error message when you convert a column from the varbinary(max) data type to the XML data type in SQL Server 2005: "Msg 6322, Level 16, State 1, Line 2 Too many attributes or namespace definitions"','November 10, 2006')
, ('9.00.2196','2005.90.2196.0','926335 FIX: Error message when you trace the Audit Database Management event and you try to bring a database online in SQL Server 2005: “Msg 942, Level 14, State 4, Line 1”','December 5, 2006')
, ('9.00.2195','2005.90.2195.0','926240 FIX: SQL Server 2005 may stop responding when you use the SqlBulkCopy class to import data from another data source','December 19, 2006')
, ('9.00.2194','2005.90.2194.0','925744 FIX: Error message when you try to use a SQL Server authenticated login to log on to an instance of SQL Server 2005: "Logon error: 18456"','October 20, 2006')
, ('9.00.2192','2005.90.2192.0','924954 FIX: Error message when you use a table-valued function (TVF) together with the CROSS APPLY operator in a query in SQL Server 2005: "There is insufficient system memory to run this query"','September 29, 2006')
, ('9.00.2192','2005.90.2192.0','925335 FIX: Error message when you use a label after a Transact-SQL query in SQL Server 2005: "Incorrect syntax near ''X''"','October 5, 2006')
, ('9.00.2191','2005.90.2191.0','925135 FIX: An empty string is replicated as a NULL value when you synchronize a table to a SQL Server 2005 Compact Edition subscriber','December 6, 2006')
, ('9.00.2190','2005.90.2190.0','925227 FIX: Error message when you call the SQLTables function against an instance of SQL Server 2005: "Invalid cursor state (0)"','October 16, 2006')
, ('9.00.2189','2005.90.2189.0','925153 FIX: You may receive different date values for each row when you use the getdate function within a case statement in SQL Server 2005','September 22, 2006')
, ('9.00.2187','2005.90.2187.0','923849 FIX: When you run a query that references a partitioned table in SQL Server 2005, query performance may decrease','September 22, 2006')
, ('9.00.2181','2005.90.2181.0','923605 FIX: A deadlock occurs and a query never finishes when you run the query on a computer that is running SQL Server 2005 and has multiple processors','February 19, 2007')
, ('9.00.2181','2005.90.2181.0','923624 FIX: Error message when you run an application against SQL Server 2005 that uses many unique user logins or performs many user login impersonations: "insufficient system memory to run this query"','October 4, 2006')
, ('9.00.2176','2005.90.2176.0','922594 FIX: Error message when you use SQL Server 2005: "High priority system task thread Operating system error Exception 0xAE encountered"','February 12, 2007')
, ('9.00.2176','2005.90.2176.0','923296 FIX: Log Reader Agent fails, and an assertion error message is logged when you use transactional replication in SQL Server 2005','September 6, 2006')
, ('9.00.2175','2005.90.2175.0','921395 FIX: The color and the background image may not appear when you try to display a report in HTML format in Report Manager in SQL Server 2005 Reporting Services','August 8, 2006')
, ('9.00.2175','2005.90.2175.0','917905 FIX: SQL Server 2005 performance may be slower than SQL Server 2000 performance when you use an API server cursor','August 14, 2006')
, ('9.00.2175','2005.90.2175.0','922578 FIX: In SQL Server 2005, the sp_altermessage stored procedure does not suppress system error messages that are logged in the SQL Server error log and in the Application log','August 30, 2006')
, ('9.00.2175','2005.90.2175.0','922438 FIX: A query may take a long time to compile when the query contains several JOIN clauses against a SQL Server 2005 database','December 14, 2006')
, ('9.00.2175','2005.90.2175.0','921536 FIX: A handled access violation may occur in the CValSwitch::GetDataX function when you run a complex query in SQL Server 2005','December 18, 2006')
, ('9.00.2174','2005.90.2174.0','922063 FIX: You may notice a large increase in compile time when you enable trace flags 2389 and 2390 in SQL Server 2005 Service Pack 1','July 25, 2006')
, ('9.00.2167','2005.90.2167.0','920974 FIX: SQL Server 2005 treats an identity column in a view as an ordinary int column when the compatibility level of the database is set to 80','August 9, 2006')
, ('9.00.2164','2005.90.2164.0','919243 FIX: Some rows in the Text Data column are always displayed for a trace that you create by using SQL Server Profiler in SQL Server 2005','February 8, 2007')
, ('9.00.2164','2005.90.2164.0','920346 FIX: SQL Server 2005 may overestimate the cardinality of the JOIN operator when a SQL Server 2005 query contains a join predicate that is a multicolumn predicate','September 19, 2006')
, ('9.00.2164','2005.90.2164.0','920347 FIX: The SQL Server 2005 query optimizer may incorrectly estimate the cardinality for a query that has a predicate that contains an index union alternative','September 19, 2006')
, ('9.00.2164','2005.90.2164.0','919929 FIX: Error message when the Replication Merge Agent runs in SQL Server 2005: "Source: MSSQL_REPL, Error number: MSSQL_REPL-2147199402"','October 26, 2006')
, ('9.00.2164','2005.90.2164.0','921003 FIX: You may receive an error message when you manually define a Back Up Database task in SQL Server 2005 to back up the transaction log','August 29, 2006')
, ('9.00.2164','2005.90.2164.0','920206 FIX: System performance may be slow when an application submits many queries against a SQL Server 2005 database that uses simple parameterization','September 26, 2006')
, ('9.00.2164','2005.90.2164.0','918882 FIX: A query plan is not cached in SQL Server 2005 when the text of the hint is a large object','September 6, 2006')
, ('9.00.2164','2005.90.2164.0','919636 FIX: Memory usage of the compiled query plan may unexpectedly increase in SQL Server 2005','July 26, 2006')
, ('9.00.2164','2005.90.2164.0','919775 FIX: The BULK INSERT statement may not return any errors when you try to import data from a text file to a table by using the BULK INSERT statement in Microsoft SQL Server 2005','August 9, 2006')
, ('9.00.2156','2005.90.2156.0','919611 FIX: The value of the automatic growth increment of a database file may be very large in SQL Server 2005 with Service Pack 1','July 26, 2006')
, ('9.00.2153','2005.90.2153.0','918222 Cumulative hotfix package (build 2153) for SQL Server 2005 is available','September 14, 2006')
, ('9.00.2153','2005.90.2153.0','919224 FIX: You may receive an error message when you install the cumulative hotfix package (build 2153) for SQL Server 2005','May 23, 2006')
, ('9.00.2050','2005.90.2050.0','932555 FIX: A script task or a script component may not run correctly when you run an SSIS package in SQL Server 2005 build 2047','July 11, 2007')
, ('9.00.2047','2005.90.2047.0','SQL Server 2005 Service Pack 1 (SP1)','April 18, 2006')
, ('9.00.2040','2005.90.2040.0','SQL Server 2005 Service Pack 1 (SP1) CTP March 2006','March 12, 2006')
, ('9.00.2029','2005.90.2029.0','SLQ Server 2005 Service Pack 1 (SP1) Beta','')
, ('9.00.1561','2005.90.1561.0','932556 FIX: A script task or a script component may not run correctly when you run an SSIS package in SQL Server 2005 build 1500 and later builds','July 11, 2007')
, ('9.00.1558','2005.90.1558.0','926493 FIX: Error message when you restore a transaction-log backup that is generated in SQL Server 2000 SP4 to an instance of SQL Server 2005: "Msg 3456, Level 16, State 1, Line 1. Could not redo log record"','January 4, 2007')
, ('9.00.1554','2005.90.1554.0','926292 FIX: When you query through a view that uses the ORDER BY clause in SQL Server 2005, the result is still returned in random order','June 26, 2007')
, ('9.00.1551','2005.90.1551.0','922527 FIX: Error message when you schedule some SQL Server 2005 Integration Services packages to run as jobs: "Package <PackageName> has been cancelled"','January 22, 2007')
, ('9.00.1551','2005.90.1551.0','922804 FIX: After you detach a Microsoft SQL Server 2005 database that resides on network-attached storage, you cannot reattach the SQL Server database','November 22, 2006')
, ('9.00.1550','2005.90.1550.0','917887 FIX: The value of the automatic growth increment of a database file may be very large in SQL Server 2005','July 26, 2006')
, ('9.00.1550','2005.90.1550.0','921106 FIX: You receive an error message when you try to create a differential database backup in SQL Server 2005','November 22, 2006')
, ('9.00.1547','2005.90.1547.0','918276 FIX: You notice additional random trailing character in values when you retrieve the values from a fixed-size character column or a fixed-size binary column of a table in SQL Server 2005','November 20, 2006')
, ('9.00.1545','2005.90.1545.0','917905 FIX: SQL Server 2005 performance may be slower than SQL Server 2000 performance when you use an API server cursor','August 14, 2006')
, ('9.00.1541','2005.90.1541.0','917888 FIX: Error message when you use a server-side cursor to run a large complex query in SQL Server 2005: "Error: 8623, Severity: 16, State: 1 The query processor ran out of internal resources"','November 22, 2006')
, ('9.00.1541','2005.90.1541.0','917971 FIX: You may receive more than 100,000 page faults when you try to back up a SQL Server 2005 database that contains hundreds of files and file groups','November 22, 2006')
, ('9.00.1539','2005.90.1539.0','917738 FIX: SQL Server 2005 system performance may be slow when you use a keyset-driven cursor to execute a FETCH statement','August 11, 2006')
, ('9.00.1538','2005.90.1538.0','917824 FIX: The SQL Server 2005 SqlCommandBuilder.DeriveParameters method returns an exception when the input parameter is a XML parameter that has an associated XSD from an SQL schema','July 26, 2006')
, ('9.00.1536','2005.90.1536.0','917016 FIX: The monitor server does not monitor all primary servers and secondary servers when you configure log shipping in SQL Server 2005','July 26, 2006')
, ('9.00.1534','2005.90.1534.0','916706 FIX: When you run the "dbcc dbreindex" command or the "alter index" command, some transactions are not replicated to the subscribers in a transactional replication in SQL Server 2005','May 15, 2007')
, ('9.00.1533','2005.90.1533.0','916086 FIX: Errors may be generated in the tempdb database when you create and then drop many temporary tables in SQL Server 2005','July 26, 2006')
, ('9.00.1532','2005.90.1532.0','916046 FIX: Indexes may grow very large when you insert a row into a table and then update the same row in SQL Server 2005','January 9, 2007')
, ('9.00.1531','2005.90.1531.0','915918 FIX: The internal deadlock monitor may not detect a deadlock between two or more sessions in SQL Server 2005','July 26, 2006')
, ('9.00.1528','2005.90.1528.0','915309 FIX: When you start a merge agent, synchronization between the subscriber and the publisher takes a long time to be completed in SQL Server 2005','January 15, 2007')
, ('9.00.1528','2005.90.1528.0','915308 FIX: The CPU usage of the server reaches 100% when many DML activities occur in SQL Server 2005','January 4, 2007')
, ('9.00.1528','2005.90.1528.0','915307 FIX: You experience a slow uploading process if conflicts occur when many merge agents upload changes to the publishers at the same time in SQL Server 2005','January 11, 2007')
, ('9.00.1528','2005.90.1528.0','915306 FIX: The merge agent fails and a "permission denied" error message is logged when you synchronize a SQL Server 2005-based merge publication','January 8, 2007')
, ('9.00.1528','2005.90.1528.0','915112 FIX: Error message when an ADO.NET-connected application tries to reuse a connection from the connection pool in SQL Server 2005: "The request failed to run because the batch is aborted"','July 26, 2006')
, ('9.00.1519','2005.90.1519.0','913494 FIX: The merge agent does not use a specified custom user update to handle conflicting UPDATE statements in SQL Server 2005','January 20, 2007')
, ('9.00.1518','2005.90.1518.0','913941 FIX: A SQL Server login may have more permissions when you log on to an instance of SQL Server 2005','September 22, 2006')
, ('9.00.1518','2005.90.1518.0','912472 FIX: An incorrect result may appear in the subscribing database when you set database mirroring for a database and database failover occurs in SQL Server 2005','July 26, 2006')
, ('9.00.1518','2005.90.1518.0','913371 FIX: You may receive error messages when you use the sp_cursoropen statement to open a cursor on a user-defined stored procedure in SQL Server 2005','July 26, 2006')
, ('9.00.1514','2005.90.1514.0','912471 FIX: The replication on the server does not work any longer when you manually fail over databases in SQL Server 2005','July 26, 2006')
, ('9.00.1503','2005.90.1503.0','911662 FIX: You may receive an access violation error message when you run a SELECT query in SQL Server 2005','July 26, 2006')
, ('9.00.1502','2005.90.1502.0','915793 FIX: You cannot restore the log backups on the mirror server after you remove database mirroring for the mirror database in SQL Server 2005','July 26, 2006')
, ('9.00.1500','2005.90.1500.0','910416 FIX: Error message when you run certain queries or certain stored procedures in SQL Server 2005: "A severe error occurred on the current command"','June 1, 2006')
, ('9.00.1406','2005.90.1406.0','932557 FIX: A script task or a script component may not run correctly when you run an SSIS package in SQL Server 2005 build 1399','July 11, 2007')
, ('9.00.1399','2005.90.1399.0','SQL Server 2005 RTM','November 7, 2005')
) D(Build,FileVersion,KB,ReleaseDate)
)
SELECT
SRC.Build
, SRC.[File version]
, SRC.[KB / Description]
, SRC.[Release Date]
, SRC.SimpleVersion
FROM
SRC;
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment