Returns the maximum number of simultaneous user connections allowed on a Microsoft® SQL Server™. The number returned is not necessarily the number currently configured.
@@MAX_CONNECTIONS
integer
The actual number of user connections allowed also depends on the version of SQL Server installed and the limitations of your application(s) and hardware.
To reconfigure SQL Server for fewer connections, use sp_configure.
This example assumes that SQL Server has not been reconfigured for fewer user connections.
SELECT @@MAX_CONNECTIONS
Here is the result set:
------------------
32767