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

Neil Knight picture Neil Knight · Nov 4, 2010 · Viewed 145.4k times · Source

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

Answer

codingbadger picture codingbadger · Nov 4, 2010

I presume you mean via SSMS?

For a SQL Server Instance:

SELECT SERVERPROPERTY('productversion'), 
       SERVERPROPERTY ('productlevel'), 
       SERVERPROPERTY ('edition')

For a SQL Server Installation:

Select @@Version