Question

If I install SQL Server Express 2017 on Windows Server 2016 Essentials, what is the maximum number of users that will be able to connect concurrently across the network to the SQL Server Express instance?

Is is unlimited or does the operating system's limits of 25 users / 50 devices then kick-in?

Also, how does the o/s count concurrent users? e.g. if we have 2 users on different computers connecting to the SQL Server service using the same SQL Server credentials, will the o/s count them as 1 user on 2 devices (hence we can, in theory, get 50 users connecting to the database), or will they be counted as 2 users on 2 devices?

Note that I am not a DB administrator nor a network specialist, just a developer trying to install my first server and trying to understand whether the o/s connection limitations per user only apply to built-in operating system services (like NTFS file sharing) or whether they also affect connections to 3rd party application services like SQL Server Express.

e.g. if I install SQL Server Express on a Windows 2016 server that has 5 user CAL only, will the limit on concurrent connections be the 32K (approximately) set by SQL Server Express or will it be the 5 connections limit set by Windows Server?

Thanks.

Was it helpful?

Solution

@@MAX_CONNECTIONS

The @@MAX_CONNECTIONS function will according to docs:

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.

So the above will give us some value the SQL Server is or was limiting the number of connection to.

On most servers this will likely return the default value of 32767.

Another two ways to access the value of the setting are as follows:

SELECT value FROM sys.configurations
WHERE name = 'user connections'

Or

USE master;  
GO  
EXEC sp_configure 'show advanced option', '1';  
GO
RECONFIGURE
GO
EXEC sp_configure @configname = 'user connections';
GO
EXEC sp_configure 'show advanced option', '0';  
GO
RECONFIGURE
GO

Why would I want to change this option

As I would suggest is the case with most advanced options, if you're asking the question it's unlikely you need to. The use cases are likely far between, but in general this setting can be used to limit the impact users are having on a server in a very high level sense.

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top