Forum Replies Created

Viewing 15 posts - 526 through 540 (of 842 total)

  • RE: How to create a Stored Procedure from this Code

    Jeff Moden (3/2/2016)


    oneteabag (3/2/2016)


    ...but the challenge is every section is pretty much relying on the output from the previous section.

    So why not use the single proc with the 4,000...

  • RE: Not receiving daily newsletters

    Today is the first day I haven't got one in a long time.

  • RE: What is the True Version of Code?

    Gary Varga (2/11/2016)


    below86 (2/10/2016)


    ...you can check in code in VCS but it isn't in production...If code is checked in early like I mention above your 'true' version 'gold' code is...

  • RE: What is the True Version of Code?

    Please feel free to enlightened me.:-) But from what I've seen so far, only a couple weeks now, you can check in code in VCS but it isn't in...

  • RE: What is the True Version of Code?

    roger.plowman (2/5/2016)


    below86 (2/5/2016)


    No bug should be so bad it has to be fixed RIGHT NOW OR THE WORLD DIES!

    I would like to live in your fantasy world. It sounds...

  • RE: What is the True Version of Code?

    No bug should be so bad it has to be fixed RIGHT NOW OR THE WORLD DIES!

    I would like to live in your fantasy world. It sounds so perfect....

  • RE: What is the True Version of Code?

    roger.plowman (2/1/2016)


    "

    Instant fail.

    You NEVER EVER EVER put a change into production without going through development/QA/approval/whatever.

    NEVER.

    Here is the reason I would NEVER EVER want to be on call for this type...

  • RE: What is the True Version of Code?

    Phil Parkin (2/1/2016)


    I'm with the DBA: the true version of code is what's in Production.

    And if your development and release processes are strict enough, the version in SC will match...

  • RE: Find Latest Date from Multiple Columns

    You could use something like this to just find the max date of those columns, it won't get you the column name though. I found this on another site,...

  • RE: Find Latest Date from Multiple Columns

    Eirikur Eiriksson (1/20/2016)


    below86 (1/20/2016)


    Just a simple way I would try and get this:

    CREATE TABLE #datetest

    (

    id varchar(8),

    L1 date,

    L2 date,

    L3 date

    );

    INSERT INTO #datetest (id, L1, L2, L3)

    VALUES...

  • RE: Find Latest Date from Multiple Columns

    Just a simple way I would try and get this:

    CREATE TABLE #datetest

    (

    id varchar(8),

    L1 date,

    L2 date,

    L3 date

    );

    INSERT INTO #datetest (id, L1, L2, L3)

    VALUES ('1005', '1-1-16', '1-17-16',...

  • RE: the use of CTEs

    erics44 (1/6/2016)


    jaime.simancas 27970 (1/6/2016)


    erics44 (1/6/2016)


    jaime.simancas 27970 (1/6/2016)

    Skill is not defined by how you write a query, but by how you solve the right problem.

    hmmmmmm, seems like a very profound...

  • RE: the use of CTEs

    jaime.simancas 27970 (1/6/2016)


    below86 (1/6/2016)


    jaime.simancas 27970 (1/6/2016)


    erics44 (1/6/2016)


    below86 (1/6/2016)


    I've had to work with a group of contractors for over a year now, and I find their use of CTE's to be...

  • RE: the use of CTEs

    jaime.simancas 27970 (1/6/2016)


    below86 (1/6/2016)


    jaime.simancas 27970 (1/6/2016)


    erics44 (1/6/2016)


    below86 (1/6/2016)


    I've had to work with a group of contractors for over a year now, and I find their use of CTE's to be...

  • RE: the use of CTEs

    Lynn Pettis (1/6/2016)


    jaime.simancas 27970 (1/6/2016)


    erics44 (1/6/2016)


    below86 (1/6/2016)


    I've had to work with a group of contractors for over a year now, and I find their use of CTE's to be excessive,...

Viewing 15 posts - 526 through 540 (of 842 total)