Viewing 9 posts - 16 through 24 (of 24 total)
Great info. Thanks all.
Any recommendations for books that cover this topic in depth?
April 24, 2008 at 6:28 am
In that case, I have another question: In what ways is the index physically implemented differently depending on the order of the columns within it? I understand that...
April 22, 2008 at 2:11 pm
I am going to implement this as a separate table. I don't want the additional overhead of the index on the table.
But I do have a question: Is this...
April 21, 2008 at 10:00 am
I just updated the stats with a 20% sample size; this took about 30 minutes. The DISTINCT query's performance does not seem to have improved.
April 18, 2008 at 8:40 am
Matt Miller (4/18/2008)
Is the drop down list showing the LAST 8 days? If not - is there a pattern in to what is shown? I'm just...
April 18, 2008 at 8:02 am
Michael Earl (4/18/2008)
Is the Day field indexed? An index on just this field should make the query much faster.
I...
April 18, 2008 at 7:20 am
I don't understand. I did post it. Here it is again:
SELECT DISTINCT Day FROM MyTable ORDER BY Day DESC
April 18, 2008 at 7:05 am
Unfortunately, I think you're right about the dynamic SQL and building the query string on the fly. That is while I'll likely do. Plus, it won't force me...
April 11, 2008 at 2:51 pm
SQL Server 2000 doesn't support the OPTION (RECOMPILE) option at the statement level. However, I did try adding WITH RECOMPILE on the stored procedure definition (for proc-level recompilation), and,...
April 11, 2008 at 1:11 pm
Viewing 9 posts - 16 through 24 (of 24 total)