Viewing 15 posts - 6,106 through 6,120 (of 7,608 total)
Edit: Based on the index missing and index usage stats you posted (thanks!) I would say: /Edit.
JID, not DID, seems like the best clustering index key for SELECTs. We...
April 30, 2014 at 8:20 am
Jeff Moden (4/29/2014)
ScottPletcher (4/29/2014)
Why not just:
SELECT
ISNULL(CAST(ASCII(SUBSTRING(data, 1, 1)) AS varchar(3)), '') +
...
April 29, 2014 at 5:03 pm
Michael Valentine Jones (4/29/2014)
Have you tried using the ONLINE = ON option in your index creation statement?
I believe OP said that Enterprise Edition was not an option.
April 29, 2014 at 2:08 pm
Eirikur Eiriksson (4/29/2014)
ScottPletcher (4/29/2014)
April 29, 2014 at 1:34 pm
Then expand the initial code to handle 10 bytes (or 20 if you're that worried about it). Yes, I'd be willing to revisit code if the known 5 bytes...
April 29, 2014 at 1:22 pm
For only 5 chars, I wouldn't bother will all the CTEs and related folderol.
Why not just:
SELECT
ISNULL(CAST(ASCII(SUBSTRING(data, 1, 1)) AS varchar(3)), '') +
...
April 29, 2014 at 12:54 pm
What indexes does SQL report are missing? What is the usage of existing indexes on that table?
There's a reasonable chance that the table should be clustered by [DID] rather...
April 29, 2014 at 12:45 pm
You probably want to do the grouping in the inner query rather than the outer query. Also, can limit parameter values to 1-4 in the inner query itself.
SELECT a.BoxId,...
April 29, 2014 at 12:15 pm
below86 (4/23/2014)
Lynn Pettis (4/23/2014)
below86 (4/23/2014)
WHERE (ath_postype = 'NTC' OR ath_postype='NTD')
AND ath_postdate BETWEEN '2013-01-01 00:00:00.000' ...
April 23, 2014 at 12:26 pm
Btw, you should < on date/datetime, not <=, as below. Otherwise you risk missing rows, especially if the data type of the underlying column changes (to datetime from smalldate,...
April 23, 2014 at 10:08 am
So how on earth are you supposed to properly tune a table when you can't change its indexes?? :w00t:
Edit: Moved the emoticon after the ??.
April 23, 2014 at 8:07 am
Lowell (4/21/2014)
something like this is what you'd wnat to wrap with sp_msForEachdb:
...
April 21, 2014 at 3:06 pm
It depends. If you reduce the log file size and it grows back to the original size again, you've just wasted resources, and re-fragmented the file as well.
Therefore, unless...
April 21, 2014 at 3:03 pm
Bouke Bruinsma (4/21/2014)
A question was brought up about TempDB best practices. There is a lot to be said about this. Not knowing your entire physical hardware platform, keep in mind...
April 21, 2014 at 2:57 pm
case
when pwdLastSet0 is null then 'Never'
when pwdLastSet0 = '0' then 'Must change at next logon'
ELSE convert(varchar(10), DATEADD(mi,(cast(pwdLastSet0 as bigint) / 600000000) - 157258080
+ DATEDIFF(Minute,GetUTCDate(),GetDate()),0) , 101) + ' '...
April 21, 2014 at 2:52 pm
Viewing 15 posts - 6,106 through 6,120 (of 7,608 total)