devxlogo

Connection Limits to SQL Server?

Connection Limits to SQL Server?

Question:
Is there a limit to the number of connections to an SQL server? If so, how many connections are permitted at one time?

Answer:
The number of connections is a configuration option. You can see the current value by executing sp_configure and looking at the row that says “user connections.” To change the value, execute sp_configure ‘user connections’, new value and then execute RECONFIGURE.

You can also use the GUI interface to accomplish the same task. In Enterprise Manager right-click on the server in question and choose configure. Click on the configuration tab and scroll down until you find the line with the ‘user connections’. You can make your changes there.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist