Viewing 9 posts - 31 through 39 (of 39 total)
VBA is a good item to have in your tool kit. A couple of warnings:
-I have worked in environments where everyone was able to connect to a live instance of...
October 3, 2008 at 6:52 am
We had the same problem and I used a table-valued function to limit the data being transferred. In this way, the join was on the function and with a smaller...
March 7, 2008 at 7:51 am
For those of us coming from the old ADO world, do the parameter names have to exactly match the sproc parm names? In ADO the ordinal position mattered not the...
November 9, 2007 at 6:57 am
Thanks for the reply, 'Junkie. However, this still has the same problem of delayed feedback.
I replaced my print with raiserror ('...PROCESSED RECORD COUNT=%u', 16, 1, @counter). When I ran,...
July 24, 2007 at 11:46 am
Last I checked, you could only get the values from out parms if you used the params collection. That was the deciding factor for our shop -- many years ago...
February 9, 2007 at 4:42 pm
A comment and a question.
We also standardized on the "explicit" parameter declaration. It has been a long time since we made the decision, but from memory it was because it was...
February 9, 2007 at 9:17 am
Here is my sad story about NOLOCK. I am a developer that just hired into a shop that (how do I say this...) has no DBA. I cannot believe it...
January 26, 2007 at 11:12 am
I check out WTF every day (right after sqlservercentral.com) if I can. They tend to get sanctimonious at times (if you never have deadlines and never do anything new or...
December 21, 2006 at 7:42 am
Question (with apologies in advance for my ignorance):
I use ADO in my app to execute the sproc. I create a command object with collection of parm objects standard (works with...
March 10, 2006 at 11:46 am
Viewing 9 posts - 31 through 39 (of 39 total)