Sunday, January 20, 2013

SQL SERVER – A List of Various SQL Server RTM and Service Pack Number

 

A common question I receive is that how do user know which version user is using and what is the latest version available for the product. Here is something at this beginning of the year, check with your production server. See if you are using the latest version of the product or if you need to upgrade. If you need to upgrade you might want to plan it with your entire team. As I get this question often here is something I have already built and kept it with me. As soon as I receive an email with the question about the version, I right away send it to them.
Now onwards as I have blogged about this subject, in future question, I will like to this blog post. Please feel free to add more details if I have missed any.
Here are two of the methods, you can use to identify your SQL Server version:
Open SSMS and in a New Query Window run following T-SQL code.
1) SELECT@@version

2) SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
The above query will return the version details of installed SQL Server.
Here is the list of the all the available RTM and Service Pack Numbers.

SQL Server 2012 Versions

ReleaseProduct Version
SQL Server 2012 Service Pack 111.00.3000.00
SQL Server 2012 RTM11.00.2100.60

SQL Server 2008 R2 Versions

ReleaseProduct Version
SQL Server 2008 R2 Service Pack 110.50.2500.0
SQL Server 2008 R2 RTM10.50.1600.1

SQL Server 2008 Versions

ReleaseProduct Version
SQL Server 2008 Service Pack 310.00.5500.00
SQL Server 2008 Service Pack 210.00.4000.00
SQL Server 2008 Service Pack 110.00.2531.00
SQL Server 2008 RTM10.00.1600.22

SQL Server 2005 Versions

ReleaseProduct version
SQL Server 2005 Service Pack 49.00.5000.00
SQL Server 2005 Service Pack 39.00.4035
SQL Server 2005 Service Pack 29.00.3042
SQL Server 2005 Service Pack 19.00.2047
SQL Server 2005 RTM9.00.1399

SQL Server 2000 Versions

ReleaseProduct version
SQL Server 2000 Service Pack 48.00.2039
SQL Server 2000 Service Pack 38.00.760
SQL Server 2000 Service Pack 38.00.760
SQL Server 2000 Service Pack 28.00.534
SQL Server 2000 Service Pack 18.00.384
SQL Server 2000 RTM8.00.194
This method will help us find edition of the relational database. In future blog posts we will see the methods to identify the version of the Business Intelligence Services.
Reference: Pinal Dave (http://blog.sqlauthority.com)

No comments:

Post a Comment