Viewing 15 posts - 781 through 795 (of 842 total)
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...
October 30, 2013 at 8:55 am
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...
October 24, 2013 at 7:14 am
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. ...
October 23, 2013 at 2:21 pm
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...
October 23, 2013 at 9:43 am
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,...
October 23, 2013 at 9:26 am
Richard Warr (10/23/2013)
October 23, 2013 at 9:02 am
Gary Varga (10/23/2013)
below86 (10/23/2013)
October 23, 2013 at 8:34 am
ryk 98103 (10/23/2013)
October 23, 2013 at 8:14 am
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...
October 23, 2013 at 8:00 am
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...
October 22, 2013 at 8:47 am
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)
October 22, 2013 at 7:39 am
enriquezreyjoseph (10/9/2013)
dwain.c (10/8/2013)
Pick a problem that someone has posted and try to solve it yourself....
October 10, 2013 at 7:58 am
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...
October 7, 2013 at 12:25 pm
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...
October 7, 2013 at 8:58 am
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...
September 16, 2013 at 10:50 am
Viewing 15 posts - 781 through 795 (of 842 total)