Viewing 15 posts - 2,791 through 2,805 (of 6,486 total)
Jeff Moden (6/20/2008)
rbarryyoung (6/20/2008)
I just want to register my agreement with Jeff.Heh... ok, ok... I promise to never draw smiley faces on your helmet ever again 😛
I wouldn't make that...
June 20, 2008 at 8:39 am
Matt Miller (6/20/2008)
It seems to me you'd want to encapsulate and send the update statement (via...
June 20, 2008 at 8:17 am
Isn't performing a remote (linked server) update going to serialize the update into cursor-like updates?
It seems to me you'd want to encapsulate and send the update statement (via OPENQUERY) ...
June 20, 2008 at 8:16 am
My gut reaction is: pick your battles. Don't take that kind of attitude head-on. Braggarts will continue to do so no matter what, so just look past it.
Instead...
June 20, 2008 at 7:34 am
If you were to use either DAO or ADO with the VBA scripting options, you can tap into the Querydefs collection, which would have SQL code behind the Access queries....
June 20, 2008 at 7:20 am
Jeff Moden (6/20/2008)
rbarryyoung (6/20/2008)
SELECT Metal, min(Result), max(Result), count(Result), stdev(Result)
FROM Metals
GROUP BY Metal
By the way, stdev() is the statistical standard deviation, if you want the standard deviation for...
June 20, 2008 at 7:12 am
Sounds to me that even once you have your data organized, you have the probably non-trivial task of making sure you have conversion scenarios between unit notations. You're also...
June 20, 2008 at 6:46 am
I'd say perhaps take a look at how much of each you happen to do. There's often something you do more than others, so perhaps that should be your...
June 20, 2008 at 6:38 am
Then before worrying about the merge or upsert, focus on figuring out how to bulk load that data into a temp data used for staging. We've got...
June 20, 2008 at 6:10 am
Why would you ever do that kind of process one row at a time? turning an upsert (which is a pet name for what this kind of operation is)...
June 20, 2008 at 5:54 am
Can you change the scope of grouped totals?
1. A user needs a report where they can dynamically query an invoice table for total invoices between specific dates. Walk...
June 19, 2008 at 2:13 pm
It does help if I put in the correct scale for the numerics. This does seem to work (just adding in test data and fixing the scales to show...
June 19, 2008 at 1:05 pm
True....but some of it really is stuff that just isn't documented. Those things make it awfully hard to throw out things outright, and force you to test them.
Like this...
June 19, 2008 at 12:44 pm
In 2005 this would be easy to define as a user-defined aggregate, or a "regular" T-SQL function as well. You'd have to pass in a way to know which rows...
June 19, 2008 at 12:25 pm
Jeff Moden (6/19/2008)
Matt Miller (6/19/2008)
June 19, 2008 at 10:54 am
Viewing 15 posts - 2,791 through 2,805 (of 6,486 total)