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 maximum number of simultaneous user connections allowed on an instance of SQL Server. The number returned is not necessarily the number currently configured.
 Transact-SQL syntax conventions
Syntax
@@MAX_CONNECTIONS  
Return Types
integer
Remarks
The actual number of user connections allowed also depends on the version of SQL Server that is installed and the limitations of your applications and hardware.
To reconfigure SQL Server for fewer connections, use sp_configure.
Examples
The following example shows returning the maximum number of user connections on an instance of SQL Server. The example assumes that SQL Server has not been reconfigured for fewer user connections.
SELECT @@MAX_CONNECTIONS AS 'Max Connections';  
Here's the result set.
Max Connections  
---------------  
32767            
See Also
sp_configure
Configuration Functions
Configure the user connections Server Configuration Option