Viewing 15 posts - 136 through 150 (of 267 total)
Jeb58,
I agree that the author's intent appears to be to indicate that defaults assumed in object name resolution aren't going to get you a cache hit, but there are all...
March 10, 2004 at 1:19 pm
This article is very misleading on one important point. The article comes very close to stating, or at least implying, that you must specify owner names for cache reuse to...
March 10, 2004 at 10:43 am
> My original proposition was, if I am to be true to myself, sort of a T.I.C. mini-troll.
I wondered whether that might be the case, but one way that...
March 8, 2004 at 5:23 pm
> The "correct" answer clearly states that the deleted table holds the reocrds ABOUT to be deleted...
Well, when an AFTER trigger fires for a DELETE, the rows have been...
March 8, 2004 at 10:08 am
Yeah, you nailed it, Julia. I hope CEWalden is still following this thread, because unless s/he needs the potential flexibility of the expanded script I posted, what you posted is...
March 5, 2004 at 4:00 pm
I appreciate your comment, and thought you might be interested to find out that I chose WHILE @@FETCH_STATUS != -1 very deliberately.
To begin with, @@FETCH_STATUS = -2 does not mean...
March 5, 2004 at 1:12 pm
No, keep speaking up, dphilip! It sounds like you've got a lot of good thoughts to share. We all misfire once in a while, and hopefully it's usually on something...
March 5, 2004 at 10:04 am
Um, I don't think the local system account's password is accessible, or changeable, by mere mortals. Are you talking about the local Administrator account?
Cheers,
Chris
March 5, 2004 at 8:24 am
Regarding another point: I have certainly written a single trigger for insert, update, and delete that references the inserted and deleted views before. Many times, in fact, at one job. ...
March 5, 2004 at 8:20 am
Regarding one point raised: actually, there isa deleted view for an insert trigger, and there is an inserted view for a deleted trigger ... they just don't contain any...
March 5, 2004 at 8:17 am
Hello Walden,
Here's one way. Have fun!
declare curIndexRebuild cursor
for
select N'dbcc dbreindex (''' + db_name() + N'.'
+ user_name(t.uid) + N'.' + object_name(i.id)...
March 5, 2004 at 12:16 am
OK, it's late here, so somebody may well jump in with a much better idea, but if you don't mind a little cut-and-paste, run the following query and then execute...
March 4, 2004 at 11:21 pm
I agree with Steve and stacenic, but would add that if your database gets so big that you can't get your backups done inside your target timeframe, then multiple filegroups...
March 4, 2004 at 11:06 pm
Wow, I don't use that part of DTS really, but that's a zinger of an error to get - it's what you'd get in VB.NET (and many of its variants)...
March 4, 2004 at 11:01 pm
Viewing 15 posts - 136 through 150 (of 267 total)