Difference between revisions of "Microsoft SQL Server License"
Jump to navigation
Jump to search
↑ https://www.sqlshack.com/sql-server-edition-upgrade/
Tags: Mobile web edit, Mobile edit |
|||
| Line 33: | Line 33: | ||
== See also == | == See also == | ||
* {{SQL Server}} | * {{SQL Server}} | ||
| + | |||
| + | [[Category:Licenses]] | ||
| + | [[Category:Databases]] | ||
Revision as of 08:44, 6 October 2020
This article is a Draft. Help us to complete it.
[Error Message] The SQL Server product key is not valid. To proceed, re-enter the product key values from the Certificate of Authenticity (COA) or SQL Server packaging. [Details] Microsoft.SqlServer.Configuration.SetupExtension.InvalidPidException: The SQL Server product key is not valid. To proceed, re-enter the product key values from the Certificate of Authenticity (COA) or SQL Server packaging.
SELECT * FROM sys.dm_db_persisted_sku_features;[1]
ECLARE @Version NVARCHAR(128)
SET @Version =
CONVERT(NVARCHAR(128),SERVERPROPERTY ('ProductVersion'))
SELECT
CASE
WHEN @Version like '11%' THEN 'SQL SERVER 2012'
WHEN @Version like '12%' THEN 'SQL SERVER 2014'
WHEN @Version like '13%' THEN 'SQL SERVER 2016'
ELSE 'Unknown'
END AS 'Sql Server Version Name',
SERVERPROPERTY('ProductVersion') AS ProductVersion,
SERVERPROPERTY('Edition') AS Edition,
SERVERPROPERTY('ProductLevel') AS ProductLevel
See also
Advertising: