Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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
@@MAX_CONNECTIONS
integer
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.
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
sp_configure
Configuration Functions
Configure the user connections Server Configuration Option
Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register today