+2 votes
in Databases by (71.8k points)
I am getting "MaxConnections quota reached" error while running an application that uses SQL server database.How can I find the maximum number of simultaneous user connections allowed on an instance of SQL Server?

1 Answer

+1 vote
by (349k points)
selected by
 
Best answer

Run the following SQL to see the maximum number of connections allowed.

SELECT @@MAX_CONNECTIONS AS 'Max Connections'; 


...