热点推荐:ASP.Net | ADO.Net | VB.Net | Web服务器 | Access | MSSQL | MySQL | Oracle | .Net控件 | Win 9x | Win 2000 | Win 2003 | DOS | Unix | 注册表 | 应用其它 | 安装调试 | 基本操作 | 使用技巧 | 系统优化 |故障处理 | 个性风格 | 病毒安全 | 专杀工具
您现在的位置: 中华IT技术网 >> 数据库 >> MSSQL >> 正文
全文
SQL Server 2000 sp4 与数据链接池
作者:1024k    文章来源:本站原创    更新时间:2007-3-21
今天远程连接一台xp sp2上的SQL,报错信息:
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. 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.InvalidOperationException: 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.

Source Error: 


Line 2503:            cmd.CommandType = CommandType.StoredProcedure;
Line 2504:
Line 2505:            connection.Open();
Line 2506:            SqlCommandBuilder.DeriveParameters(cmd);
Line 2507:            connection.Close();
 

但是,我的连接字符串中已经设置了,最大链接池=200,应该是不可能全部被占用的。
当把链接池设置去掉,就报:
An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Data.SqlClient.SqlException: An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)

Source Error: 


Line 2503:            cmd.CommandType = CommandType.StoredProcedure;
Line 2504:
Line 2505:            connection.Open();
Line 2506:            SqlCommandBuilder.DeriveParameters(cmd);
Line 2507:            connection.Close();
 

这下子,问题就明朗了,典型的没有打 Sql2000 sp4 的问题,打上sp4问题解决,差点被误导。

相关文章
最新更新
编辑推荐
热门图片
频道大全
文章阅读排行
周排行
月排行