It is a per-instance, not per database, configuration. You can check the current value in sys.configurations
and change it with sp_configure
. The relevant option is user connections
:
Use the user connections option to
specify the maximum number of
simultaneous user connections allowed
on Microsoft SQL Server. The actual
number of user connections allowed
also depends on the version of SQL
Server you are using and the limits of
your application or applications and
hardware. SQL Server allows a maximum
of 32,767 user connections.
1000 of connections is not an exceedingly high number. On high end systems the server can listen on multiple ports affinitized to NUMA nodes and have hundreds and thousands of clients connected to each node.
Note that the number of connections is different from the number of requests, ie. connections actively executing something, sys.dm_exec_requests. Each Request requires one or more workers and the number of workers is configured with the max worker threads
option.