Quantcast
Channel: CodeSection,代码区,SQL Server(mssql)数据库 技术分享 - CodeSec
Viewing all articles
Browse latest Browse all 3160

SQL Server Execution Timeout Expired. The timeout period elapsed prior to comple ...

$
0
0
This post only provides one of the possibilities to resolve the error “”Execution Timeout Expired. The timeout period elapsed prior to completion of the operation or the server is not responding.” in SQL Server.
When I use C# to backup my database then I hit the error above.
Usethe database you are having the error, or select the database you are having the error from SQL Server management studio.
SQL Server Execution Timeout Expired. The timeout period elapsed prior to comple ...
Run the below SQL Statement.
exec sp_updatestats
If this is not working then try. It works for me without the following statement.
dbcc freeproccache
Reference:

https://stackoverflow.com/questions/8602395/timeout-expired-the-timeout-period-elapsed-prior-to-completion-of-the-operation


Viewing all articles
Browse latest Browse all 3160

Trending Articles