Viewing 14 posts - 1 through 15 (of 15 total)
Yes, I understand about the clustered index scan, of course without indexing that will happen. I am just concerned whether this type of sluggishness will happen, as I said...
February 28, 2014 at 8:50 am
Hi Grant,
Yes it was in NYC! I talked with you briefly on Saturday, in fact. Nice to put a face to the message board login!
Nobody at SQL Saturday...
November 23, 2010 at 3:55 pm
Followup: As a test, I dropped the composite nonclustered index (the one mentioned near the end of my last post above), and while leaving the PK clustered on ID...
November 18, 2010 at 5:26 pm
I've also seen the following command mentioned somewhere on SSC:
DBCC TRACEON(652)
...which is supposed to turn off read-aheads. I haven't tried it yet, but I wonder if this would make...
November 18, 2010 at 4:45 pm
Craig Farrell (11/17/2010)Welcome back, Jordan. You've come a long way since your last discussion. Glad to see your interest hasn't waned when you saw the size of the...
November 18, 2010 at 3:58 pm
Sure, here ya go...
SQL Server parse and compile time:
CPU time = 0 ms, elapsed time = 264 ms.
SQL Server Execution Times:
CPU time =...
November 17, 2010 at 9:11 pm
Lowell (11/17/2010)
November 17, 2010 at 2:56 pm
Clarification: This is on a test server where no other SQL is currently being run. (I checked sp_who and nobody is talking to it except me.)
I guess it...
November 17, 2010 at 2:17 pm
I'd also like to invite comments on the "hot spot" issue I've read about elsewhere: With a clustered index, all new rows are written to the same page, causing...
November 17, 2010 at 1:07 pm
Perry Whittle (11/14/2010)
presumably your Windows page file occupies the C drive also?
Yes, the paging is on C: and is set to a custom size: 2046 to max 4092, rather...
November 14, 2010 at 12:39 pm
Additional note: I'm pinpointing the real reasons for our performance issues and tackling those already -- missing indexes, bad query plans, poorly written SQL, etc. I'd rather not...
November 14, 2010 at 12:23 pm
Thanks to everyone for the additional ideas on this issue.
TheSQLGuru: Your post was really helpful. I wasn't aware of how to view physical stats.
scott.pletcher (9/28/2010)
The WidgetDate field is...
September 30, 2010 at 9:10 am
Thanks a lot Craig!
Just to clarify, there are a number of non-clustered indexes on the Widgets table. They are all single-column indexes, not composite. However, there is no...
September 24, 2010 at 7:35 pm
Thanks for the replies so far...
The Widgets table has no clustered index. The WidgetDate field is the single most relevant column for searching/querying, however it can change often as...
September 24, 2010 at 4:43 pm
Viewing 14 posts - 1 through 15 (of 15 total)