SQL timeout error

Getting this error :

NativeError = 258
Error = [Microsoft][SQL Native Client]Shared Memory Provider: Timeout error [258]. 
SQLState = HYT00, NativeError = 0
Error = [Microsoft][SQL Native Client]Login timeout expired
SQLState = 08001, NativeError = 258
Error = [Microsoft][SQL Native Client]Unable to complete login process due to delay in login response

      

Hope someone can help.

0


source to share


3 answers


Try setting the SqlCommand.CommandTimeout property to 0. For more information there is an MSDN article here .



+1


source


I think you can find this Microsoft KB article . If your login error meets the criteria in this article, then this is a known SQL Server 2005 error and there are workarounds.



+1


source


Restart your SQL server or try increasing the pool size in your connection string.

-1


source







All Articles