Viewing 15 posts - 3,196 through 3,210 (of 5,843 total)
My guess is that this is actually a symptom of something else, likely a poor IO subsystem. Have you done a waitstats and file IO stall analysis? Also,...
August 24, 2011 at 6:24 am
Partitioning is a very advanced/complex subject. You REALLY need to have experience/training to both setup/manage them properly as well as write proper queries that might take advantage of partition...
August 24, 2011 at 6:20 am
Given your questions and that you are taking over for a previous DBA it sounds like you are in need of a system and performance review from a professional. ...
August 22, 2011 at 7:59 am
I have numerous standing clients and EVERY ONE OF THEM is in desparate need of at least one SQL Server DBA. I routinely get calls/linkedin messages from a bevy...
August 22, 2011 at 7:57 am
1) sp_whoisactive
2) glenn allan berry has great diagnostic collection script
3) brent ozar has a good 'blitz' script
August 16, 2011 at 8:01 am
best is to change channel_cd to be NOT NULL with a default of ''. Then remove all those horrid ISNULL(.., '') things from your query. And if channel_cd...
August 16, 2011 at 7:59 am
GilaMonster (8/11/2011)
Table definition (create table statement), index definitions (create index) and execution plan please.
Agreed - and OP, please be sure you set your SSMS scripting options to include everything related...
August 12, 2011 at 8:34 am
ChrisTaylor (8/11/2011)
with t (rn, col1, col2) as
(
select
rn= row_number() over (partition by col1, col2, etc order by col1, col2, etc),
col1, col2,...
August 11, 2011 at 8:16 am
Most people don't understand that a seek isn't always more efficient than a scan, and can in fact be unbelievably LESS efficient. If you are hitting (or the optimizer...
August 11, 2011 at 8:13 am
alen teplitsky (8/9/2011)
August 9, 2011 at 8:56 am
tonyarp05 61903 (8/8/2011)
Anyone can help me
I have updated one stored procedure without commended out which line need to modify.
Now I want to inform the client which line i have...
August 9, 2011 at 7:29 am
Why are we 2 days into futzing around with this question without having seen a create table script yet? Can't do anything useful without that.
OP - please...
August 9, 2011 at 7:28 am
Given that you are only using 6 drive letters as it is I see no reason to move to mount points for your standalone servers.
August 9, 2011 at 7:21 am
1) The primary if not only reason do break down a complex query into multiple steps with interim storage (using TEMPORARY TABLES, NOT TABLE VARIABLES as discussed in number 2...
August 9, 2011 at 7:19 am
micbra (8/4/2011)
August 5, 2011 at 9:21 am
Viewing 15 posts - 3,196 through 3,210 (of 5,843 total)