Skip to main content

SQL Server versions and numbers

Often we have a need to figure out what all those versions and numbers stand for in the SQL server jungle

Here is a nice overview from Wikipedia


Version
Year
Release Name
Codename
1.0 (OS/2)
1989
SQL Server 1.0 (16bit)
-
1.1 (OS/2)
1991
SQL Server 1.1
(16bit)
-
4.21 (WinNT)
1993
SQL Server 4.21
SQLNT
6.0
1995
SQL Server 6.0
SQL95
6.5
1996
SQL Server 6.5
Hydra
7.0
1998
SQL Server 7.0
Sphinx
-
1999
SQL Server 7.0 OLAP Tools
Palato mania
8.0
2000
SQL Server 2000
Shiloh
8.0
2003
SQL Server 2000 64-bit Edition
Liberty
9.0
2005
SQL Server 2005
Yukon
10.0
2008
SQL Server 2008
Katmai
10.25
2010
SQL Azure DB
CloudDB
10.5
2010
SQL Server 2008 R2
Kilimanjaro (aka KJ)
11.0
2012
SQL Server 2012
Denali


Source and more information http://en.wikipedia.org/wiki/Microsoft_SQL_Server

Comments

Popular posts from this blog

2012 Enterprise Portal Development Cookbook

Yes it is here, the most interesting book of the year " Microsoft Dynamics AX 2012 Enterprise Portal Development Cookbook " Check it out my friends http://blogs.msdn.com/b/solutions/archive/2012/07/12/microsoft-dynamics-ax-2012-enterprise-portal-development-cookbook.aspx

Dynamics 365 for operations – Table extensions

Background Extensions are a new way to add functionality and custom code to the D365 system without changing the standard code. In fact, Microsoft has announced that edit standard elements like those that we have done in the past will not be possible after 2017. By using extensions, we can achieve the same result by simply extending the standard system => EXTENSIONS. To read more about the difference between overlaying and extensions follow this link https://ax.help.dynamics.com/en/wiki/customization-overlayering-and-extensions/#extensions Extending tables By using table extensions, we can create a new table that adds new fields, field groups, indexes, mappings, relations, methods, subscribe to event handlers and more. When extending tables we need to follow the naming rule as such: <TABLENAME><_Extension> the compiler understands the _Extensions suffix and knows that the table in question is extending a table from the standard system. This gives us access ...

SysOperationFramework

I have tried out the new SysOperationFramework of Dynamics Ax 2012 that is going to replace the old RunBase framework. The SysOperationFramework is service based batch framework and it is my feeling at the moment that it will provide us with more possibilities for creating and setting up batch jobs in the real world. There is no need for me to create a full blog about the SysOperationFramework since I am not the first one to try this out. So i will simply refer to another blog post about the SysOperationFramework  http://www.artofcreation.be/2011/08/21/ax2012-sysoperation-introduction/ Thanks to Art Of Creation – Dynamics AX Blog for an outstanding good blog post on the matter Happy batch programming my friends