SQL Server 2000 sp4 与数据链接池

时间:2022-08-22 22:47:41
今天远程连接一台xp sp2上的SQL,报错信息:
SQL Server 2000 sp4 与数据链接池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. 
SQL Server 2000 sp4 与数据链接池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. 
SQL Server 2000 sp4 与数据链接池
SQL Server 2000 sp4 与数据链接池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.
SQL Server 2000 sp4 与数据链接池
SQL Server 2000 sp4 与数据链接池Source Error: 
SQL Server 2000 sp4 与数据链接池
SQL Server 2000 sp4 与数据链接池
SQL Server 2000 sp4 与数据链接池Line 2503:            cmd.CommandType = CommandType.StoredProcedure;
SQL Server 2000 sp4 与数据链接池Line 2504:
SQL Server 2000 sp4 与数据链接池Line 2505:            connection.Open();
SQL Server 2000 sp4 与数据链接池Line 2506:            SqlCommandBuilder.DeriveParameters(cmd);
SQL Server 2000 sp4 与数据链接池Line 2507:            connection.Close();
SQL Server 2000 sp4 与数据链接池 
SQL Server 2000 sp4 与数据链接池

但是,我的连接字符串中已经设置了,最大链接池=200,应该是不可能全部被占用的。
当把链接池设置去掉,就报:
SQL Server 2000 sp4 与数据链接池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) 
SQL Server 2000 sp4 与数据链接池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. 
SQL Server 2000 sp4 与数据链接池
SQL Server 2000 sp4 与数据链接池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)
SQL Server 2000 sp4 与数据链接池
SQL Server 2000 sp4 与数据链接池Source Error: 
SQL Server 2000 sp4 与数据链接池
SQL Server 2000 sp4 与数据链接池
SQL Server 2000 sp4 与数据链接池Line 2503:            cmd.CommandType = CommandType.StoredProcedure;
SQL Server 2000 sp4 与数据链接池Line 2504:
SQL Server 2000 sp4 与数据链接池Line 2505:            connection.Open();
SQL Server 2000 sp4 与数据链接池Line 2506:            SqlCommandBuilder.DeriveParameters(cmd);
SQL Server 2000 sp4 与数据链接池Line 2507:            connection.Close();
SQL Server 2000 sp4 与数据链接池 
SQL Server 2000 sp4 与数据链接池

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