What is the maximum and minimum size of connection pool ADO.Net Supports in the connection string?
What is the maximum and minimum size of connection pool ADO.Net Supports in the connection string. Min Pool Size=[max size ?] Max Pool Size=[min size] There is no documented limit on Max Pool Size. There is however an exact documented limit on maximum number of concurrent connections to a single SQL Server (32767 per instance, see http://msdn.microsoft.com/en-us/library/ms143432(v=SQL.90).aspx) . A single ADO.NET pool can only go to a single instance, so maximum effective limit is therefore 32767. Min pool size is zero Default Max Pool Size 100 Min Pool Size 0 Connection Pooling for the .NET