更改sa密码后,我(有时)会收到Timeout异常

时间:2013-05-27 22:34:06

标签: c# .net sql-server

我在SQL server中更改了sa密码,该密码曾经与系统的管理员密码相同。在那之后,我有时会收到此错误:

System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) 
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) 
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
at

我正在运行Windows Server 2008 R2和SQL Server Enterprise。

您对如何解决此问题有任何线索吗?

1 个答案:

答案 0 :(得分:1)

更改SA密码极不可能导致此类问题。

我建议您尝试以下操作:

  • 尝试不同的帐户,看看会发生什么 - 最好不要将SA帐户用于应用程序。
  • 查看您的应用程序设置 - 也许您已将连接超时设置为某个低值
  • 在事件查看器中检查sql server的错误日志 - 可能有更多详细信息可以帮助您解决此问题...