Returns the maximum number of simultaneous user connections allowed on a Microsoft® SQL Server™. The number returned is not necessarily the number that is currently configured.
@@MAX_CONNECTIONS
integer
The actual number of user connections allowed also depends on the version of SQL Server you are using and the limits 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
sp_configure | Configuration Functions |
user connections Option |