at (SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at (TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at (RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
at (String methodName, Boolean async, Int32 timeout, Boolean asyncWrite)
at (TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
at ()
at OM_Middleware.(String sql, DBParam param, Boolean isQueryIdentity)
ClientConnectionId:901c8ea4-a7e6-40e0-a063-f114aed980d4
Error Number:1205,State:52,Class:13
简单介绍下,服务器上有个中间件以前一直运行,没有问题,当数据库的数据达到几十万条之后,程序经常报这样的错误,时间长了,应用程序就崩溃了,需要重新开启。
从网上查一下资料,有说 with nolock和 readpast 在语句上添加,试过还是不行,又有说程序逻辑有问题,但是已经运行了很长时间,排除,最后想到语句的运行时间,查询之后发现一条语句查询时间达到10秒钟,修改语句后,查询时间缩短到1秒左右,运行了几天,这个错误不在出现,问题解决。
仅提供一种思路,以供参考