Forum Replies Created

Viewing 15 posts - 2,791 through 2,805 (of 6,486 total)

  • RE: use a sequence of column values in a query

    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...

  • RE: TuningProc

    Matt Miller (6/20/2008)


    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...

  • RE: TuningProc

    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) ...

  • RE: Team dynamics

    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...

  • RE: Scripting Access Queries

    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....

  • RE: Create Temporary Tables Dynamically in cursor loop

    Jeff Moden (6/20/2008)


    rbarryyoung (6/20/2008)


    Try this:

    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...

  • RE: Create Temporary Tables Dynamically in cursor loop

    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...

  • RE: What am I ?!

    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...

  • RE: PLEASE HELP

    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...

  • RE: PLEASE HELP

    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)...

  • RE: Interview Questions for Reporting Services

    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...

  • RE: a way to emulate =PRODUCT() from Excel?

    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...

  • RE: Fast way to create temp table from existing table definition

    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...

  • RE: a way to emulate =PRODUCT() from Excel?

    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...

  • RE: Fast way to create temp table from existing table definition

    Jeff Moden (6/19/2008)


    Matt Miller (6/19/2008)


    Actually - the other person was me, and the comment centered around the "locking TempDB" urban legend that seems to pop up a lot. That...

Viewing 15 posts - 2,791 through 2,805 (of 6,486 total)