Recent SQL Server Build Numbers

With the recent release of SQL Server 2012, the chances of having a mixed set of SQL Server versions in your organization is greater than ever. Knowing the different SQL Server build numbers is an important piece of management information.

In your labs and test environments, you might be running older RC or CTP versions on systems where you might not intend to. Knowing which version of SQL Server you’re using can make an impact both on the ability to run different T-SQL commands as well as the ability to save and restore backups and which upgrade paths may be supported.

Each different version of SQL Server has its own build number. For example, the SQL Server 2012 RTM release has the build number 11.00.2100.60. The first two parts indicate the internal version number. The remaining parts of the build number identity the service pack or interim build number.

There are several ways to determine which version of SQL Server you're running. To find the build number with SQL Server Management Studio (SSMS), open SSMS and launch the Object Browser. The version number is listed immediately following the system name. You can also find the SQL Server build number by opening Query Editor and then running either of the following T-SQL queries:

SELECT @@VERSION

or

SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')

Table 1 displays the recent build numbers for SQL Server, from the recent SQL Server 2012 SP1 release to SQL Server 7. For a complete list of SQL Server build numbers, you might want to check out the blog <a href="http://www.sqlserverbuilds.blogspot.com/" target="_blank">SQL Server Builds</a>.

 Otey sql server build version table 1
SQL Server Builds

Discuss this Article 2

bopraji
on Jan 16, 2013
Hi Why the different version numbers shown when using the tool - SQL features discovery tool. SQL Server 2008 R2 x64. Also when trying to apply a CU or update, they show a different versions. Where to find this. eg: displayed version is 10.50.2550.0 ... installed is GDR 10.51.2550.0(10.51.2860.0) eg: from the summary text file. Package properties: Description: SQL Server Database Services 2008 R2 ProductName: SQL2008 Type: RTM Version: 10 SPLevel: 2 KBArticle: KB2630458 KBArticleHyperlink: http://support.microsoft.com/?kbid=2630458 PatchType: SP AssociatedHotfixBuild: 0 Platform: x64 PatchLevel: 10.52.4000.0 ProductVersion: 10.50.1600.1 GDRReservedRange: 10.0.1000.0:10.0.1099.0;10.0.3000.0:10.0.3099.0 PackageName: SQLServer2008R2-KB2630458-x64.exe Installation location: d:\833d78f634aac5087631f72a\x64\setup\ But a select @@version shows - 10.50.4000.0 Also Were is this version change documented as its causing a heap of confusion here. Thanks
osilayer3@gmail.com
on Jan 17, 2013
My version shows 11.0.2218.0 How does THAT fit in?

Please or Register to post comments.

IT/Dev Connections

Las Vegas
September 30th - October 4th

Paul ThurottOur Experts will show you:
• Common SQL Server
Problems
• Best Practices for T-SQL
• SQL Server Integration
Services
• Database Development

Come See Michael Otey & Tim Ford in Person!

Early Registration Now Open

From the Blogs
May 21, 2013
blog

A Common Misconception about MAXDOP

Out of the box, SQL Server is (and has been) able to take advantage of multiple processors/cores without any effort on behalf of administrators....More
May 9, 2013
blog

My ISO 8601-Compliant Signature 2

My family recently just "officially" announced that we're in the process of adopting a child from South Africa. We're quite excited, of course, but there's a ton of paperwork to do—along with the need for gobs of signatures....More
May 8, 2013
blog

Use SSIS for ETL from Hadoop

In this blog post, Mark Kromer walks you through using SSIS as a way to use ETL techniques using Microsoft's Hadoop on Windows (HDInsight) as a source using Hive connectors...More
SQL Server Pro Forums

Get answers to questions, share tips, and engage with the SQL Server community in our Forums.