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.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 Server seems to be slowing up

Author  Topic 

bluecjh
Starting Member

7 Posts

Posted - 2006-04-10 : 07:44:44
I am running a large query against a test
server and am the only user, this query
originally ran at about four minutes but as the days go
by is running slower. - half an hour yet the query
has not materially changed.

Given that i am the sole user of this server
what are the likely reasons (query performance aside)
that the server is slowing up?

many thanks

Chris

Kristen
Test

22859 Posts

Posted - 2006-04-10 : 08:36:27
At a guess: Statistics not updated, indexes not defragmented (if you've added, or deleted, lots of rows). If you are using Stored Procedures possibly the SProc needs re-compiling too.

If the server runs continuously, and you are in a position to do so, stop-start SQL Server and see if that helps - if it does then you need some routine maintenance for Statistics / SProc recompile, etc. - as a More Professional Solution that "Lets just reboot and see what happens!!"

The reboot won't help with the index rebuild/defragment issue, but if it helps it will point at the Stats/Recompile as being the issue.

Kristen
Go to Top of Page

jen
Master Smack Fu Yak Hacker

4110 Posts

Posted - 2006-04-10 : 08:38:08
try any of the following, without knowing what the query is and considering you're the only user as you stated...

reindex
recompile sprocs
archive data

--------------------
keeping it simple...
Go to Top of Page
   

- Advertisement -