Forum Replies Created

Viewing 15 posts - 781 through 795 (of 842 total)

  • RE: Any way to see or view the results of an execute sql task ?

    This is one of two reasons I don't use the execute SQL task. If I get called at 1 AM because the SQL failed I want to know where...

  • RE: Recharge and Relax

    Nevyn (10/23/2013)


    How much of a salary decrease would you take for more vacation? Using Dave's number say you are making $40 an hour, for a 40 hour week thats...

  • RE: Recharge and Relax

    Great points Dave. I was just looking at it from a benefits side, not salary. Just trying to think of a way to help those who don't. ...

  • RE: Recharge and Relax

    LightVader (10/23/2013)


    GeorgeCopeland (10/23/2013)


    I disagree. Just because you are a good programmer, developer, DBA, or whatever, doesn't mean you are a good negotiator. I'm happy you are a good...

  • RE: Recharge and Relax

    GeorgeCopeland (10/23/2013)


    Knowledge workers have no reason to unionize. We can cut far better deals with management on our own than collectively.

    I disagree. Just because you are a good programmer,...

  • RE: Recharge and Relax

    Richard Warr (10/23/2013)


    In the UK the legal minimum is 28 days including public holidays. Many companies offer a week more than that and give additional holiday to longer-serving employees. This...

  • RE: Recharge and Relax

    Gary Varga (10/23/2013)


    below86 (10/23/2013)


    Not to open a can of worms from a previous post, but for those of you with less time, wouldn't a union be great to fight for...

  • RE: Recharge and Relax

    ryk 98103 (10/23/2013)


    I know we can get caught up in work, but, geez, definitely take all the time you have coming! I love my job, but how many of us...

  • RE: Recharge and Relax

    WOW only 10 days for vacation and sick, no way I could work for your company. I get 25 vacation days, 8 paid holidays, and I accrue 5...

  • RE: Puzzling SQL Update Statement

    I knew I forgot something, added to the where clause so you don't update to much.

    UPDATE Table_B

    SET tree = 'Middle East',

    [entry] = 5

    FROM Table_B

    WHERE tree = 'Africa'

    and job_number in (SELECT...

  • RE: Puzzling SQL Update Statement

    I did't try testing this but would this be what you want?

    UPDATE Table_B

    SET tree = 'Middle East',

    [entry] = 5

    FROM Table_B

    WHERE job_number in (SELECT job_number

    FROM Table_B

    WHERE tree = 'Egypt'

    GROUP BY job_number)

  • RE: Site for good SQL learnings

    enriquezreyjoseph (10/9/2013)


    dwain.c (10/8/2013)


    The best learning is by doing, and I agree that this site is extraordinary for this.

    Pick a problem that someone has posted and try to solve it yourself....

  • RE: The Ratio

    We have one DBA, about 16 developers, and about 10 what I call 'power users'. These 'power' users usually write small queries to get some detail level data from...

  • RE: Beginner, Expert, or Both?

    I'm with Simon here. You stick with what works, what is simplist (KISS principle) and what you can get done quickly. You look for better ways to do things, but...

  • RE: Early Month end processing, How do you handle the dates?

    Thanks for the info Sean, I thought a table would be the best way to go. I don't think this example with completely work but I've got the general...

Viewing 15 posts - 781 through 795 (of 842 total)