asp.net – 如何增加我的存储过程调用的超时时间(见错误)?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何增加我的存储过程调用的超时时间(见错误)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
  2. 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.
  3.  
  4. Exception Details: System.Data.sqlClient.sqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
  5.  
  6. Source Error:
  7.  
  8. Line 91:
  9. Line 92: DataSet getData;
  10. Line 93: getData = sqlHelper.ExecuteDataset(ConfigurationManager.ConnectionStrings["connstr"].ConnectionString,CommandType.StoredProcedure,"Course_NewReportGet_Get_Sav",objPara);
  11. Line 94:
  12. Line 95: foreach (DataRow dr in getData.Tables[0].Rows)
  13.  
  14.  
  15. Source File: c:\Users\Ryan\bancroft archive\santiago\santiago code\trunk\admin\tools\Optimus.aspx.cs Line: 93
  16.  
  17. Stack Trace:
  18.  
  19. [sqlException (0x80131904): Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.]
  20. System.Data.sqlClient.sqlConnection.OnError(sqlException exception,Boolean breakConnection) +1950890
  21. System.Data.sqlClient.sqlInternalConnection.OnError(sqlException exception,Boolean breakConnection) +4846875
  22. System.Data.sqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) +194
  23. System.Data.sqlClient.TdsParser.Run(RunBehavior runBehavior,sqlCommand cmdHandler,sqlDataReader dataStream,BulkCopySimpleResultSet bulkCopyHandler,TdsParserStateObject stateObj) +2392
  24. System.Data.sqlClient.sqlDataReader.ConsumeMetaData() +33
  25. System.Data.sqlClient.sqlDataReader.get_MetaData() +83
  26. System.Data.sqlClient.sqlCommand.FinishExecuteReader(sqlDataReader ds,RunBehavior runBehavior,String resetOptionsString) +297
  27. System.Data.sqlClient.sqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior,Boolean returnStream,Boolean async) +954
  28. System.Data.sqlClient.sqlCommand.RunExecuteReader(CommandBehavior cmdBehavior,String method,DbAsyncResult result) +162
  29. System.Data.sqlClient.sqlCommand.RunExecuteReader(CommandBehavior cmdBehavior,String method) +32
  30. System.Data.sqlClient.sqlCommand.ExecuteReader(CommandBehavior behavior,String method) +141
  31. System.Data.sqlClient.sqlCommand.ExecuteDbDataReader(CommandBehavior behavior) +12
  32. System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) +10
  33. System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset,DataTable[] datatables,Int32 startRecord,Int32 maxRecords,String srcTable,IDbCommand command,CommandBehavior behavior) +130
  34. System.Data.Common.DbDataAdapter.Fill(DataSet dataSet,CommandBehavior behavior) +287
  35. System.Data.Common.DbDataAdapter.Fill(DataSet dataSet) +94
  36. Mexico.Data.sqlHelper.ExecuteDataset(sqlConnection connection,CommandType commandType,String commandText,sqlParameter[] commandParameters) +149
  37. Mexico.Data.sqlHelper.ExecuteDataset(String connectionString,sqlParameter[] commandParameters) +93
  38. admin_tools_Optimus.GetUsers() in c:\Users\Ryan\bancroft archive\santiago\santiago code\trunk\admin\tools\Optimus.aspx.cs:93
  39. admin_tools_Optimus.GetCompanies() in c:\Users\Ryan\bancroft archive\santiago\santiago code\trunk\admin\tools\Optimus.aspx.cs:75
  40. admin_tools_Optimus.Proceed(Object sender,EventArgs e) in c:\Users\Ryan\bancroft archive\santiago\santiago code\trunk\admin\tools\Optimus.aspx.cs:43
  41. System.Web.UI.WebControls.Button.OnClick(EventArgs e) +111
  42. System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +110
  43. System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
  44. System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl,String eventArgument) +13
  45. System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +36
  46. System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,Boolean includeStagesAfterAsyncPoint) +1565

解决方法

也许这不适用,但我认为应该被提及.默认的CommandTimeOut为30秒.对于99.9%的Web应用程序中发生的任何操作,这应该是足够的时间.除非您绝对确定该操作需要更长的时间,否则您应该花费时间尝试优化sql,以便在< 30秒内返回.正确的索引是开始的好地方.

猜你在找的asp.Net相关文章