Reputation: 11
We have an application which has a SQL Server 2000 Database attached to it. After every couple of days the application hangs, and we have to restart SQL Server service and then it works fine. SQL Server logs show nothing about the problem. Can anyone tell me how to identify this issue? Is it an application problem or a SQL Server problem?
Thanks.
Upvotes: 1
Views: 1677
Reputation: 128
Read this
Application may be hanging due to Deadlock check the SP runs at that time using Profiler and check the table manipulation(use nolock), check the buffer size and segregate the DB into two or three module.
Upvotes: 0
Reputation: 45295
Is it an application problem or a SQL Server problem?
Is it possible to connect to MS SQL Server using Query Analyzer or another instance of your application?
General tips:
Upvotes: 1
Reputation: 6270
Hard to predict the issue, I will suggest you to check your application first.Check what all operations you are performing against data base, are you taking care of connection pooling, unused open connections can create issues. Check if you can get any log from your application. Without any log information hardly we can suggest anything.
Upvotes: 0