Viewing 15 posts - 31 through 45 (of 49 total)
Thanks for all of the posts, guys!
Yes, there are a ton of inserts and deletes.
And while it deletes records over five mins old, due to poor design, it runs Waaaay...
June 9, 2011 at 10:51 am
This was Prior....the PK is non-clustered (I'm guessing because this database (third-party) was upgraded through the years <shrug> ).
The execution plan is Prior as well.
June 9, 2011 at 10:29 am
The premise being, indexes ignore when you only have a few rows, and it all fits on a page.
Even if it was ignored...such a small number of rows... :blink:
June 9, 2011 at 10:20 am
Table:
CREATE TABLE [dbo].[RainbowQueue](
[RainbowType] [varchar](50) NOT NULL,
[RainbowKey] [varchar](255) NOT NULL,
[WorkDay] [datetime] NOT NULL,
[UpdatedRID] [bigint] NULL,
[SessionId] [int] NULL,
[BranchId] [varchar](20) NOT NULL,
[RecordUpdated] [datetime] NULL,
[RecordUpdatedBy] [varchar](20) NULL,
[RecordUpdateId] [timestamp] NULL,
CONSTRAINT [PK_RainbowQueue] PRIMARY KEY NONCLUSTERED...
June 9, 2011 at 10:18 am
Excellent, excellent article, Gianluca!
-Grubb
June 9, 2011 at 9:29 am
Mike John (6/8/2011)
June 8, 2011 at 9:52 am
++ to majorbloodnock
I think the author doesn't give enough respect to the compounding.
The compounding kicks in quickly. Percentages affect everything down the line, including other bonuses or profit-sharing that...
May 19, 2011 at 11:33 am
Grubb (4/8/2011)
April 22, 2011 at 10:43 am
Guys, after I create, run, stop, and delete the trace, I cannot ever seem to open the resulting file with Profiler: "Access denied". I'm assuming something still has...
April 8, 2011 at 8:29 am
From the link Ninja posted:
(PAGEIOLATCH_x: If this is significant in percentage, it typically suggests disk IO subsystem issues. Check disk counters.
35% wait seems like it may be significant.
Is...
April 8, 2011 at 8:23 am
TheSQLGuru (4/5/2011)
2) it is likely that you can observe what is going on by evaluating aggregate waits stats. Take a snapshot of waits, do a waitfor for 3 mins,...
April 6, 2011 at 9:53 am
Craig Farrell (4/4/2011) SELECT * FROM master..sysprocesses.
Thanks, Craig. The problem with that is that the query only runs ~400 ms. Do you know of a way...
April 4, 2011 at 2:38 pm
Viewing 15 posts - 31 through 45 (of 49 total)