Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
magmo
Aged Yak Warrior
558 Posts |
Posted - 2008-10-21 : 09:48:34
|
HiSometimes it seems like our sql server is under heavy work, beacuse it can take very long time to execute stored procedures and so on, how can I check whats going on that makes the server responding so slow? |
|
sodeep
Master Smack Fu Yak Hacker
7174 Posts |
Posted - 2008-10-21 : 09:59:45
|
Any error in app log or error log about I/O issues or Memory issue(paging out).It could be caused by various issues1)fragmented index2)stats not upto date3)Recompiling everytime you run itRun performance monitor . |
 |
|
magmo
Aged Yak Warrior
558 Posts |
Posted - 2008-10-21 : 10:46:01
|
Found the error, the logfile was huuuuge. |
 |
|
ghemant
Starting Member
22 Posts |
Posted - 2008-10-23 : 08:43:32
|
quote: Originally posted by magmo HiSometimes it seems like our sql server is under heavy work, beacuse it can take very long time to execute stored procedures and so on, how can I check whats going on that makes the server responding so slow?
then you should consider investigation of this; something like autogrow, reindex,bulk insert/bcp etc. you should also consider scheduling t-log backup to keep your t-log in shape.RegardsHemantgiri S. GoswamiMS SQL Server MVPhttp://hemantgirisgoswami.blogspot.com/ |
 |
|
|
|
|