Viewing 15 posts - 4,426 through 4,440 (of 5,394 total)
Some things that come to my mind:
1) Badly coded triggers
2) Too many indexes
3) ... any possible reason. The question is too generic to give a good answer.
April 20, 2010 at 3:50 am
Very simple: avoid looping. Almost every problem can be solved with set based code. You provided very little information, I suggest that you take a look at the article linked...
April 20, 2010 at 3:28 am
You could also create the split function separately, as it comes handy very often:
CREATE FUNCTION [dbo].[fSplit]
(
@Parameter VARCHAR(8000),
...
April 20, 2010 at 3:19 am
From SQL2005 the keyword WITH denotes a common table expression (CTE) that can be used in the query as an "inline view" to make code more readable or to achieve...
April 20, 2010 at 2:57 am
Always great stuff from you, Paul.
Well done.
April 20, 2010 at 2:43 am
Tom.Thomson (4/19/2010)
lmu92 (4/19/2010)
Hi,anybody of you folks influenced by the volcano eruption on Iceland?
I haven't been hit by it yet, but I'm supposed to be flyin from ACE to MAN...
April 20, 2010 at 1:36 am
I don't understand where your "10 / (10 + 20)" comes from.
April 19, 2010 at 10:04 am
anthony_merriwether (4/19/2010)
April 19, 2010 at 9:58 am
Jeff Moden (4/16/2010)
Just so you guys know... remember I said that I changed my cteTally code to use Gianluca's wonderful idea of...
April 19, 2010 at 9:24 am
The Dixie Flatline (4/16/2010)
That's okay, Gianluca. I sometimes feel like my IQ is dropping when I do get the jokes.
ROTFL! :hehe:
April 16, 2010 at 10:38 am
Have you tried handling errors in the triggers with TRY/CATCH?
You could ignore errors in the catch block.
April 16, 2010 at 10:34 am
Thanks Jack! Sometimes I feel dumb when I don't understand your jokes...
April 16, 2010 at 10:25 am
jcrawf02 (4/16/2010)
Can you imagine how tough your life would be if you didn't know Jack?I'll bet he's sick of that joke, but I thought it was funny :hehe:
I'm sure I'll...
April 16, 2010 at 10:16 am
Lynn Pettis (4/16/2010)
Gianluca Sartori (4/16/2010)
Luke L (4/16/2010)
April 16, 2010 at 9:58 am
Luke L (4/16/2010)
April 16, 2010 at 9:47 am
Viewing 15 posts - 4,426 through 4,440 (of 5,394 total)