Forum Replies Created

Viewing 15 posts - 7,036 through 7,050 (of 7,597 total)

  • RE: Exercises in t-SQL

    Eugene Elutin (11/30/2012)


    ... and got some pretty mediocre answers from (supposedly) experienced and skilled T-SQLers.

    I am not be surprised when good skilled T-SQLers come up with stupid answers on paper...

  • RE: Exercises in t-SQL

    capnhector (11/30/2012)


    ScottPletcher (11/30/2012)


    Eugene Elutin (11/30/2012)


    ScottPletcher (11/30/2012)


    ...

    In the interests of being thorough, I added a Message to my proposed solution back to them:

    SELECT

    ...as above...,

    ...

  • RE: Exercises in t-SQL

    Eugene Elutin (11/30/2012)


    ScottPletcher (11/30/2012)


    ...

    In the interests of being thorough, I added a Message to my proposed solution back to them:

    SELECT

    ...as above...,

    CASE WHEN...

  • RE: How to use values keyword as parameter of a function

    Jeff Moden (11/29/2012)


    capnhector (11/29/2012)


    EDIT: This is also for me to play with a couple of things and get more experience with them. so it may not be fast...

  • RE: Help On Execution Plan Status

    Grant Fritchey (11/30/2012)


    And the indexes have to be selective enough to be useful for a seek or you'll get scans. Same things apply to non-clustered indexes too.

    For lots more detail...

  • RE: Bulk Insert Row Terminator Woes

    rwm972 (11/30/2012)


    Hi All,

    I'm trying to bulk insert a pipe-delimited file with <CR><LF> as a row terminator. The problem is some fields may contain <CR><LF>. So, I've asked the client to...

  • RE: Exercises in t-SQL

    Eugene Elutin (11/30/2012)


    ... and got some pretty mediocre answers from (supposedly) experienced and skilled T-SQLers.

    I am not be surprised when good skilled T-SQLers come up with stupid answers on paper...

  • RE: Exercises in t-SQL

    Jeff Moden (11/30/2012)


    ScottPletcher (11/30/2012)


    Jeff Moden (11/29/2012)


    That's a good test question, Scott. The only thing I might change is requiring them to do it "in a single query". It's...

  • RE: Exercises in t-SQL

    Eugene Elutin (11/30/2012)


    what do you mean by "mid-score"? Do you mean average or second largest score (from three possible ones)?

    The middle one. You're listing all the actual scores each...

  • RE: Exercises in t-SQL

    (Deleted, duplicate)

  • RE: Exercises in t-SQL

    Eugene Elutin (11/30/2012)


    mid_score --may be NULL if only one test taken

    low_score --may be NULL if only one or two tests taken

    Looks a bit illogical to me...

    I can see why...

  • RE: FKs and indexes

    PiMané (11/30/2012)


    ScottPletcher (11/29/2012)


    PiMané (11/29/2012)


    ScottPletcher (11/29/2012)


    When you create the nonclustered index on c2, explicitly specify c1 as a key after that.

    Then define the FK on (c2, c1) and you should be...

  • RE: Exercises in t-SQL

    Jeff Moden (11/29/2012)


    That's a good test question, Scott. The only thing I might change is requiring them to do it "in a single query". It's sometimes amazing what...

  • RE: FKs and indexes

    PiMané (11/29/2012)


    ScottPletcher (11/29/2012)


    When you create the nonclustered index on c2, explicitly specify c1 as a key after that.

    Then define the FK on (c2, c1) and you should be covered.

    if the...

  • RE: How to use values keyword as parameter of a function

    FYI, I think you can touch-up the original function to get rid of the variable and the COUNT(DISTINCT):

    alter function AreEqual (@t as GenericTable readonly)

    returns bit

    as

    begin

    return (

    select...

Viewing 15 posts - 7,036 through 7,050 (of 7,597 total)