How to set connection pool to 100 in sql server 2005 instance
If you want to change it, you need to do this on the client, as Remus already mentioned. The client is creating the connection pool.
You can specify the connection pooling properties in your connection string that you use to connect to SQL Server. The most important properties are:
So if you want to enable pooling and have min. 20, max. 250 connections, you could use this connection string:
server=MyServer;database=MyDatabase;Pooling=True;Min Pool Size=25;Max Pool Size=250
For more details, see the MSDN docs or check out the Connection Strings web site.
Marc
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With