Article ID: 948868 - Last Review: April 2, 2008 - Revision: 1.0 FIX: Error message when a "System.Data" thread tries to open a pooled connection in the .NET Framework 2.0: "Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool"On This PageSYMPTOMSConsider the following scenario. In the Microsoft .NET Framework 2.0, a System.Data thread tries to open a pooled connection. At the same time, another thread tries to clear that pool by using the ClearPool method or the ClearAllPools method. In this scenario, you receive the following error message: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.
CAUSEThis problem occurs because of a race condition in the internal call of the GetConnection method. After both the connection pool group and the connection pool are obtained, the GetConnection method is called on the pool. If the ClearPool method is called between the GetConnectionPool method and the GetConnection method, the pool state is changed to ShuttingDown, and the GetConnection method returns the null value. These things occur because of the race condition. Then, because the null value is interpreted as a time-out, you receive the error message that is mentioned in the "Symptoms" section. RESOLUTIONHotfix informationTo resolve this problem, install the hotfix that is mentioned in the following article in the Microsoft Knowledge Base:948815
(http://support.microsoft.com/kb/948815/
)
Availability of the .NET Framework 2.0 post-Service Pack 1 hotfix rollup package for System.Data.dll and System.Data.OracleClient.dll
PrerequisitesYou must have the .NET Framework 2.0 Service Pack 1 installed to apply this hotfix.Restart requirementYou do not have to restart the computer after you apply this hotfix.Hotfix replacement informationThis hotfix does not replace any other hotfixes.File informationThe English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time item in Control Panel.The .NET Framework 2.0, x86 versionsCollapse this table
The .NET Framework 2.0, x64 versionsCollapse this table
The .NET Framework 2.0, Itanium-based versionsCollapse this table
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section. MORE INFORMATION
For more information about software update terminology, click the following article number to view the article in the Microsoft Knowledge Base:
824684
(http://support.microsoft.com/kb/824684/
)
Description of the standard terminology that is used to describe Microsoft software updates
Call stack informationSystem.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection) System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory) System.Data.SqlClient.SqlConnection.Open()
| Article Translations
|
Back to the top
