SQL Server 2008 and 2008 R2 versions are heading with steep steps toward the end of support - July 9, 2019. Besides an upgrade to upper versions, it seems there is also the opportunity to migrate to an Azure SQL Server Managed Instance, which allows a near 100% compatibility with an on-premises SQL Server installation, or to a Azure VM (see Franck Mercier’s post).
If you aren’t sure which versions of SQL Server you have in your organization here’s a script that can be run on all SQL Server 2005+ installations via SQL Server Management Studio:
SELECT SERVERPROPERTY('ComputerNamePhysicalNetBIOS') ComputerName , SERVERPROPERTY('Edition') Edition , SERVERPROPERTY('ProductVersion') ProductVersion , CASE Cast(SERVERPROPERTY('ProductVersion') as nvarchar(20)) WHEN '9.00.5000.00' THEN 'SQL Server 2005' WHEN '10.0.6000.29' THEN 'SQL Server 2008' WHEN '10.50.6000.34' THEN 'SQL Server 2008 R2' WHEN '11.0.7001.0' THEN 'SQL Server 2012' WHEN '12.0.6024.0' THEN 'SQL Server 2014' WHEN '13.0.5026.0' THEN 'SQL Server 2016' WHEN '14.0.2002.14' THEN 'SQL Server 2017' ELSE 'unknown' END Product
Resources:
[1] Microsoft (2018) How to determine the version, edition, and update level of SQL Server and its components [Online] Available from: https://support.microsoft.com/en-us/help/321185/how-to-determine-the-version-edition-and-update-level-of-sql-server-an
[2] Microsoft Blogs (2018) SQL Server 2008 end of support, by Franck Mercier [Online] Available from: https://blogs.technet.microsoft.com/franmer/2018/11/01/sql-server-2008-end-of-support-2/
No comments:
Post a Comment