Hi ;
I have been facing problem in connection pooling for two weeks and I did search each website and forum and I noticed that this is one the most comman problem using ASP.NET with VB.NET and SQL Server 2000. I went thru my application and checked for any open connection and I ensured there is no connection leakage. I turned ON SQL Profiler only for Connections and I noticed that after closing and destroying connections, it removes from the SQL Server pool after 6 minutes. For that reason if there more than 100 connections in a pool then it breaks the website and gave time out error.
In the end, I turned OFF the connection pooling using Pooling = false in the connection string. Now, the website is working fine but I am wondering about the disadvantage of disabling Connection Pooling. One thing is clear it will slow , any other in long term.
Thanks.
I have been facing problem in connection pooling for two weeks and I did search each website and forum and I noticed that this is one the most comman problem using ASP.NET with VB.NET and SQL Server 2000. I went thru my application and checked for any open connection and I ensured there is no connection leakage. I turned ON SQL Profiler only for Connections and I noticed that after closing and destroying connections, it removes from the SQL Server pool after 6 minutes. For that reason if there more than 100 connections in a pool then it breaks the website and gave time out error.
In the end, I turned OFF the connection pooling using Pooling = false in the connection string. Now, the website is working fine but I am wondering about the disadvantage of disabling Connection Pooling. One thing is clear it will slow , any other in long term.
Thanks.