Viewing 15 posts - 10,066 through 10,080 (of 18,926 total)
I think that the instead of triggers let you access those datatypes, but I have never done that so I could use a confirmation on this one.
March 9, 2007 at 9:37 pm
No.
But keep in mind that ANY statement (even print '' or set @MyVar = 4) made after the query will either reset it to 0 or to the new number of...
March 9, 2007 at 9:36 pm
Yup, but I have very strict requests. Never hurt to ask however.
March 9, 2007 at 8:07 am
Wow, thanx for this one. This is really not an obvious place to look for the problem
.
March 8, 2007 at 7:30 am
This can be quite simple with any level of failure. You can add another column like TagDate and set it to getdate() when setting the tag in place.
Then have a...
March 7, 2007 at 3:11 pm
I can't seem to get this column to show any data. Right now all I can offer is to parse the command text for object names... For from the best...
March 7, 2007 at 2:36 pm
SCOPE_IDENTITY() works in 2000 so you can use it.
The only questions I have is what do you do if the sp runs (with delete) and for some bizarre reason the app...
March 7, 2007 at 11:55 am
Care to elaborate a bit more on this one?
March 7, 2007 at 11:27 am
Thanks for this interesting concept. I'm not sure I'd use it over the uniqueidentifier.
I like to have as little transactions as possible but I'll be sure this keep this...
March 7, 2007 at 7:47 am
That's also why I threw in the output parameters in there. If for any bizarre reason you get disconnected, then you can still continue the batch. But then again I...
March 7, 2007 at 7:16 am
No you can only check if the table exists in tempdb..#tablename to see if you own it. Not much else you can do, and for good reasons.
March 6, 2007 at 5:33 pm
I'll take Jeff's word for it. I don't have enough experience in high transaction environement to comment on deadlocks.
The only change I would make is add a second sp.
sp 1 tags...
March 6, 2007 at 5:31 pm
As the only process seems to be a SELECT, I would do something, like the following, so there is only one commit:
I would not assume that if I were you. ...
March 6, 2007 at 9:13 am
Just to complete... The temp table will also be dropped when the sp in question ends, or when the table is explicitly dropped in the sp.
Again no need to drop the...
March 6, 2007 at 8:30 am
Viewing 15 posts - 10,066 through 10,080 (of 18,926 total)