Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Applies to:
SQL Server
Azure SQL Managed Instance
Returns the name of the registry key under which SQL Server is running. @@SERVICENAME returns 'MSSQLSERVER' if the current instance is the default instance; this function returns the instance name if the current instance is a named instance.
Transact-SQL syntax conventions
Syntax
@@SERVICENAME
Return Types
nvarchar
Remarks
SQL Server runs as a service named MSSQLServer.
Examples
The following example shows using @@SERVICENAME.
SELECT @@SERVICENAME AS 'Service Name';
Here's the result set.
Service Name
------------------------------
MSSQLSERVER
See Also
Configuration Functions (Transact-SQL)
Manage the Database Engine Services