Viewing 15 posts - 3,406 through 3,420 (of 6,486 total)
GilaMonster (5/8/2008)
Storage take blame for a poorly performing database? What universe are you in? 😉
I know, I know.... I keep hoping to catch up with the tooth fairy - that...
May 8, 2008 at 9:29 am
GilaMonster (5/8/2008)
I'm having a rather large fight with the storage team, who want to give me non-dedicated...
May 8, 2008 at 7:55 am
I see Jeff has already smacked himself on the hand about using the assignment syntax for aliasing, so I won't pile on...:)
It's actually in the "deprecated file" called...
May 8, 2008 at 7:45 am
Wayne West (5/7/2008)
Someguy (5/7/2008)
May 7, 2008 at 11:40 am
well - you could simply filter your update statement to not update those rows.
Or you could have a BEFORE UPDATE trigger that catches and prevents the "bad values" from being...
May 7, 2008 at 10:39 am
Are those objects in your Model database? That's what gets used as the template for new databases, so any objects in Model at the time you create a new...
May 7, 2008 at 10:32 am
davidthegray (5/6/2008)
Then you should start firing your lighter.
See this sample:
CREATE TRIGGER ToyInventory_UPDATE ON ToyInventory AFTER UPDATE
AS
DECLARE @rcnt int
SET @rcnt=@@ROWCOUNT
IF @rcnt=0 RETURN
IF @rcnt > 1 BEGIN
RAISERROR('You may only change...
May 7, 2008 at 10:05 am
I'd agree with the assessment that #2 is a multiplexing scenario. #1 might be interesting though. Depending on what Server B does (or rather doesn't do) with that...
May 7, 2008 at 9:45 am
Derek Dongray (5/7/2008)
janine.rawnsley (5/7/2008)
"SELECT UDF FROM Table" -...
May 7, 2008 at 9:31 am
sudhakara (5/6/2008)
May 7, 2008 at 8:24 am
What - only 12 useful tips? in a single article?:hehe:
Stop it now - you're setting the bar too high for the rest of us....
(superlative as usual).....
May 7, 2008 at 8:11 am
Sergiy (5/6/2008)
Matt Miller (5/6/2008) I just didn't think Sergiy knuckled under to office politics...:hehe::w00t:
Well, I'm probably lucky, but I'm not THAT lucky.
I'm not sure there is any scientific proof that...
May 7, 2008 at 7:22 am
I do hope in a way that they get that deal back together. There is a definite need to have at least 2 viable 1600-lb gorillas going at it...
May 6, 2008 at 10:19 pm
Jeff Moden (5/6/2008)
May 6, 2008 at 10:03 pm
Just curious. I like having the utility tables like Tally - but is there a value in having all of those things in a SINGLE table? to do...
May 6, 2008 at 8:31 pm
Viewing 15 posts - 3,406 through 3,420 (of 6,486 total)