Search code examples
sql-server-2008licensing

How do I find out what License has been applied to my SQL Server installation?


I have SQL Server 2008 installed, but I'm not sure what license was installed. Is there an easy way to find this out?


Solution

  • This shows the licence type and number of licences:

    SELECT SERVERPROPERTY('LicenseType'), SERVERPROPERTY('NumLicenses')