How do I find out what License has been applied to my SQL Server installation?
This shows the license type and number of licenses:

The following example uses the function SERVERPROPERTY in a SELECT Statement to return information about the server. This situation is helpful when there are multiple instances of SQL Server installed on a Win server. The customer must open another connection to the same instance used for the current connection.

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

or

Or more detail:

SERVERPROPERTY is a fascinating system function. It returns many of the system values. I use it very frequently to get different server values like Server Collation, Server Name.

sqlserverproperty2

5/5 - (3 votes)