Feature Packs

Microsoft provides Feature Packs which contain stand-alone packages which enhance or add value to your SQL Server environment.

Note regarding future feature pack releases can be found here.
 
We’re human and if you detect that we’ve missed some packages or links appear to no longer be working, please let us know and we’ll update the page :)
 
Microsoft SQL Server 2017

Version Published Comment
14.0.1000.169 2017 Oct Feature Pack for RTM

Microsoft SQL Server 2016

Version Published Comment
13.0.5026.0 2018 Apr Feature Pack for SP2
13.0.4001.0 2017 May Feature Pack for SP1
13.0.1601.5 2016 May Feature Pack for RTM

Microsoft SQL Server 2014

Version Published Comment
12.0.5000.0 2016 Jul Feature Pack for SP2
12.0.4100.1 2015 May Feature Pack for SP1
12.0.2000.8 2014 Apr Feature Pack for RTM

Microsoft SQL Server 2012

Version Published Comment
11.0.7001.0 2017 Oct Feature Pack for SP4
11.0.6020.0 2015 Nov Feature Pack for SP3
11.0.5058.0 2014 Jun Feature Pack for SP2
11.0.3000.0 2012 Nov Feature Pack for SP1
11.0.2100.60 2012 Mar Feature Pack for RTM

Microsoft SQL Server 2008 R2

Version Published Comment
10.50.6000.34 2014 Sep Feature Pack for SP3
10.50.4000.0 2012 Jul Feature Pack for SP2
10.50.2500.0 2011 Nov Feature Pack for SP1
10.50.1600.1 2011 Oct Feature Pack for RTM

Microsoft SQL Server 2008

Version Published Comment
10.0.6000.29 2014 Sep Feature Pack for SP4
10.00.5500.00 2011 Jun Feature Pack for SP3
10.00.4000.00 2010 Sep Feature Pack for SP2
10.00.2531.00 2009 Aug Feature Pack for SP1
 
Download link unknown
10.00.1600.22 2008 Aug Feature Pack for RTM
 
Download link unknown

Microsoft SQL Server 2005

Version Published Comment
9.00.5000 2010 Dec Feature Pack for SP4
 
Download link unknown
9.00.4035 2008 Dec Feature Pack for SP3
 
Download link unknown
9.00.3042 2007 Feb Feature Pack for SP2
9.00.2047 2006 Apr Feature Pack for SP1
9.00.1399 2005 Nov Feature Pack for RTM
 
Download link unknown
Mötz Jensen

For anyone finding the post while searching for old Feature Packs / Service Packs because the need a specific version of SQL Server Native Client Tools (sqlncli.msi / sqlncli_x64.msi).

If you can get hold on the Service Pack that was release at the same time as the Feature Pack you are looking for, you can extract it.

Put the ServicePack.exe on you disk. E.g. C:\Temp\SQL\en_sql_server_2005_service_pack_4_x86.exe

Start a command prompt and run the following:
cd c:\temp\sql
en_sql_server_2005_service_pack_4_x86.exe /extract:”c:\temp\sql\extract”
Click OK to the window that pops up and wait for the extraction
When done browse into
c:\temp\sql\extract\hotfixsqlncli for the x86 file
and
c:\temp\sql\extract\hotfixsqlncli_x64 for the x64 file

Mötz Jensen

When doing it for SQL Server 2008 the folder is a bit different:

c:\temp\sql\extract\1033_enu_lp\x86\setup\x86 for the x86 file
and
c:\temp\sql\extract\1033_enu_lp\x86\setup\x64 for the x64 file

Mötz Jensen

I can see that all service packs does it a bit different across all the different releases.

Here is a powershell script to search for all sqlncli.msi files when done extracting.

Get-ChildItem -Path ‘C:\Temp\SQL\’ -Filter “sqlncli.msi” -Recurse

Best advice is to extract the x86 version of a Service Pack, because it contains both the x64 and x86 files