Viewing 15 posts - 1 through 15 (of 18 total)
That was a smart solution Sean.
I've implemented this approach in the script now. Thanks for much 🙂
November 19, 2012 at 8:31 am
ok, thanks for the clarification.
I'll try this at work tomorrow.
November 15, 2012 at 2:41 pm
Thanks very much for your help so far!
I'm at home now so I haven't got access to SSMS, but I've read through your code and I think I can see...
November 15, 2012 at 1:33 pm
Ok, great. Let me take a look at your solution ...
November 15, 2012 at 12:34 pm
Here you go ... hope this helps ...
--===== If the test table already exists, drop it
IF OBJECT_ID('TempDB..#Question','U') IS NOT NULL
...
November 15, 2012 at 10:22 am
Yes, I see what you mean. Let me see if I can clarify:-
I guess the question I need to answer is:- if I'm going to insert a batch of...
November 15, 2012 at 9:50 am
Thanks for the explanation, I think I see what you're saying.
I'm surprised there is such a limitation because I thought that actually it was common for there to be a...
October 7, 2010 at 8:18 am
Still not seeing it :unsure:
I've searched that article for "resolution" since that seemed to be a key part of what you were saying, but I only found references to "deferred...
October 7, 2010 at 7:12 am
Grant Fritchey (10/7/2010)
Because one of those errors is dependent on resolution of action, it's not caught by the TRY/CATCH. It's explained here.
Which link in that reference should I follow for...
October 7, 2010 at 6:53 am
Sorry, no idea how I managed to post in this part of the forum !!??
I've re-posted it in the 2008 General one.
I'm looking for the Delete option to get rid...
October 7, 2010 at 4:25 am
Awesome! I have just run the upgrade on my box and now Profiler is R2 and it all works perfectly!
Amazingly, we were actually able to use profiler (2008) against...
September 2, 2010 at 6:59 am
I would go with the second option but do away with sequence numbers. Use shadow tables instead.
May 13, 2010 at 7:46 am
I've got this to work:-
sp_changeObjectOwner 'dbo.GetSalesPurchaseOrder', 'sales'
This changes the owner, and when the existing apps connect with that owner information everything works ok.
March 22, 2010 at 7:44 am
Andrei Hetel (3/2/2010)
queries based on active = 0/1 condition will most likely slow down your application
I very much doubt there will be any performance issue from using a flag in...
March 9, 2010 at 9:43 am
I think it's worth pausing for a moment here and looking at what is actually needed.
I.e. what volumes/relationships exist in the data and how exactly is this going to be...
April 22, 2009 at 8:00 am
Viewing 15 posts - 1 through 15 (of 18 total)