Viewing 15 posts - 5,011 through 5,025 (of 5,843 total)
Jeff Moden (9/2/2008)
Carl Federl (9/2/2008)
Jeff & GSquared:Did either of you get a chance to perform any additional analysis ?
No, I sure haven't... my apologies. Have a new job with...
September 3, 2008 at 7:38 am
Richard Fryar (9/2/2008)
Check for an insert trigger.I've seen ridiculously inefficient triggers resulting in high CPU and IO.
That is indeed a good one, Richard, and one that is often simply overlooked!
September 2, 2008 at 7:46 am
Table Size: 2 GB
Index: cluster index on identity column, three non cluster index
index size: 3 GB
cluster index insert
row count:38968909
Soooo, you have just 2GB of data yet 3 NC indexes...
September 2, 2008 at 1:55 am
mohan.mariyappa (8/31/2008)
September 2, 2008 at 1:50 am
Hey, if you think you can guarantee that only one row will ever be inserted/updated at a time then your trigger will be OK. The problem is that you...
August 28, 2008 at 8:14 am
nithin.gujjar (8/28/2008)
GO
/****** Object: Trigger [dbo].[NEWACTIVEID] Script Date: 08/28/2008 13:52:20 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER TRIGGER [dbo].[NEWACTIVEID] ON [dbo].[Client]
FOR INSERT
AS
BEGIN
Declare @clientid int,
@id int,
@pw char(2),
@activeid char(9),
@luhn...
August 28, 2008 at 7:20 am
It was strange how a very simple change in the query made it much faster.
YOU may think so, but the regulars here won't. 🙂
August 28, 2008 at 6:37 am
GilaMonster (8/26/2008)
August 26, 2008 at 6:36 am
Task manager: Processes tab: View menu: Select Columns
August 25, 2008 at 1:22 pm
1) >> We are using AWE: we have locked the working set to 11.5 GB (we should probably increase that).
NO you shouldn't, not if you are already...
August 25, 2008 at 9:27 am
I would look for queries with very high IO as well, and check the plans for spools. Also UDF usage can lead to wicked bad looping queries. Likewise...
August 25, 2008 at 9:22 am
cool_itprofessional (8/24/2008)
August 25, 2008 at 9:17 am
AFAIK the answer to both is no. But I am not declaring this to be the definitive answer.
I do think that the Dev edition of sql server is pretty...
August 21, 2008 at 8:13 am
1) You have not been upfront with us. Your original post did not have nearly the stuff in it this query does:
insert into #download
...
August 21, 2008 at 7:29 am
1) is there an implicit conversion happening in the year month value?
2) Can you print out the dynamic sql you are executing and provide it to us? Also, take...
August 20, 2008 at 2:50 pm
Viewing 15 posts - 5,011 through 5,025 (of 5,843 total)