SQL @@SERVICENAME

The @@SERVICENAME is one of the Configuration functions used to return the registry key under which the SQL Server is currently running. If it is a default instance, it will write MSSQLSERVER as the service name. And if it is a named instance, it will return the instance name.

The syntax behind this SQL @@SERVICENAME is shown below.

@@SERVICENAME

The below code snippet will show the SQL Server service name we are currently running.

SELECT @@SERVICENAME AS 'Service Name'
SQL @@SERVICENAME 1
Categories SQL