Unable to connect. The maximum number of '%d' configured user connections are already connected. System Administrator can configure to a higher value with sp_configure.
This error results when all configured user connections are in use and a request to create another SQL Server process occurs. SQL Server is not configured with enough user connections to support all requests. There is one "PSS" (Process Slot Structure) for each configured user connection.
Use the sp_configure system procedure to increase the number of user connections:
sp_configure 'user connections', new_number go
RECONFIGURE go
Depending on the exact configuration of your SQL Server, each user connection requires 37K of memory, whether or not it is in use. Gradually increase the number of user connections until this error no longer occurs. When you change the user connections parameter, you may need to increase the memory parameter.