Viewing 15 posts - 76 through 90 (of 93 total)
Its a huge huge old system written for sql7. Databases over 200Gb, managment says it does not have the resources to spare to upgrade fully. You would laugh if I...
September 10, 2008 at 3:17 am
like Gail said its basically a restart.
instead of doing that next time try
checkpoint
dbcc freeproccache
dbcc dropcleanbuffers
checkpoint
it will have to recompile all the query plans so briefly there might be a performance...
August 28, 2008 at 9:24 am
one table take 2.5 hours just to do a 20% update stats, when it runs even though its a quite period we almost always get user complaints aboyt performance.
Does...
August 28, 2008 at 6:26 am
Executed as user: aaaa\bbbb. sqlmaint.exe failed. [SQLSTATE 42000] (Error 22029). The step failed.
June 12, 2008 at 6:06 am
Jeff Moden (5/16/2008)
Edward (5/16/2008)
I am just doing a standard duration trace. I am unable to reboot as it is a live system. I will try flushing the procedure cache ...
May 19, 2008 at 10:23 am
I am just doing a standard duration trace. I am unable to reboot as it is a live system. I will try flushing the procedure cache its mainly T-SQL...
May 16, 2008 at 10:09 am
Thats what i thought objects named like that are stats but one I run
SELECT *
FROM SYSINDEXES idx
INNER JOIN SYSOBJECTS tbl ON idx.[id] = tbl.[id]
WHERE indid > 0
and tbl.[name] = 'extracts'
and...
February 29, 2008 at 5:02 am
February 22, 2008 at 4:44 am
Thanks for that what is your reasioning to it takeing longer due to disk space?
February 4, 2008 at 10:11 am
just look at the clustered indexes. what did this phantom index start with. if it was hind it is a hypothetical index which sql has created. Generaly I delete them,...
January 31, 2008 at 9:35 am
I have had a look at my pefmon counters, my system context switches/sec is avg 8800 and my thread context switch/sec is 8500. I have seen them both alot higher...
January 31, 2008 at 7:59 am
thanks for that I have done all usual checks and have failed over to a different node and the problem has gone away. The serves are meant to be the...
January 16, 2008 at 10:24 am
HI thanks for that I have turned on the trace flags that’s how I found the tables to reindex. I am having problems finding out the tables involved in the...
January 15, 2008 at 2:16 am
Viewing 15 posts - 76 through 90 (of 93 total)