Viewing 15 posts - 406 through 420 (of 471 total)
That's a good answer. If you upgraded then some of your default values may not be correct (like Max Worker Threads).
My guess is that if you set both your...
August 28, 2008 at 1:53 pm
I don't remember where I got this but here is the query I use to get the Signal Wait percentages:
create table #waitstats (
waittype varchar(80),
requests numeric(20,1),
waittime numeric (20,1),
signalwaittime numeric(20,1))
insert into...
August 28, 2008 at 1:41 pm
We have found on our 64 bit servers (especially our Itanium) that if we leave Maxdop at 0, the server spends a lot of CPU time transferring the load from...
August 28, 2008 at 1:34 pm
On our 64 bit servers we set the memory to allow 1.5 - 2 GB for the OS as Gail recommended and set Maxdop at 1 or 2. ...
August 28, 2008 at 1:06 pm
Thanks Gail, that was my understanding also.
August 25, 2008 at 10:11 am
Do you still need to enable trace flag -T1118 to enable the uniform allocations feature in SQL 2005 as we did in SQL 2000?
August 25, 2008 at 9:47 am
Try this:
SELECT 'ALTER INDEX ALL ON '+o.name +' REBUILD WITH (FILLFACTOR = '+ CONVERT(varchar(20),i.fill_factor) + ', SORT_IN_TEMPDB = ON )'
from sys.indexes i
inner join sys.objects o on o.object_id = i.object_id
...
August 20, 2008 at 9:36 am
Are you trying to determine which version you are on?
August 19, 2008 at 2:15 pm
webrunner (7/14/2008)
In process of trying to identify if particular queries might be the cause, I checked the Default Trace files. I did not see anything in the trace files pointing...
August 19, 2008 at 1:49 pm
I liked the point of the question and I hope that is not missed. I have seen occassions where the DBA performed a REINDEX in a maintenance plan followed...
August 14, 2008 at 7:43 am
Simon, thanks for the explanation. Implicit conversions involving varchar (max) have bitten me a couple of times already. Nice question.
August 11, 2008 at 8:50 am
Steven Cameron (7/17/2008)
When BOL discusses row size, it refers to in-row data, not the length of all the data in a record. So LOB storage is not included.
If I would...
July 17, 2008 at 7:41 am
I thought this was an excellant question. In trying to figure out the best answer to the question it made me look pretty deep into the topic and I...
July 10, 2008 at 7:50 am
It looks like you are running the RTM version of SQL Server. You might want to try installing SP2. Also try to run the same statement directly in Query...
June 27, 2008 at 12:16 pm
Viewing 15 posts - 406 through 420 (of 471 total)