I try to link various SQL Server versions (RTM, Service Packs, Cumulative Updates) with respective build numbers. Here are a few links that I use which might come in handy for many of you database developers out there. Some of these links are official and some aren’t.
- How to determine the version and edition of SQL server and its components
- SQL Server Version
- SQL Server Version Database
- sqlserverbuilds.blogspot.com
Some of the above links are comprehensive enough for most developers.
Some useful SQL Server functions to determine the version and edition:
@@VERSION SERVERPROPERTY('productversion') SERVERPROPERTY('productlevel') SERVERPROPERTY('edition')
Advertisement












