Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Connection Pooling

Author  Topic 

d3ng
Yak Posting Veteran

83 Posts

Posted - 2007-09-28 : 03:18:00
I am looking for some guidelines for SQL Server connection pooling.
I would like to know the number of recomended connections for a SQL server based upon number of CPU's and or memory and I want to monitor or check the connection pooling? I would also like to know any guidelines around SQL server connection pooling.

spirit1
Cybernetic Yak Master

11752 Posts

Posted - 2007-09-28 : 04:59:30
connection pooling is a client provider thing.
your ado.net provider has a default of 25 (i think) connections in the connection pool.
when it exceeds that the connections are put on hold.


_______________________________________________
Causing trouble since 1980
blog: http://weblogs.sqlteam.com/mladenp
SSMS Add-in that does a few things: www.ssmstoolspack.com
Go to Top of Page

d3ng
Yak Posting Veteran

83 Posts

Posted - 2007-09-28 : 06:04:29
Right now I'm trying the SQL Profiler to monitor the connection pooling. Thanks!
Go to Top of Page
   

- Advertisement -