Viewing 15 posts - 826 through 840 (of 1,243 total)
Stefan Krzywicki (11/18/2014)
cackalackian (11/18/2014)
Would you want aspects of your life, perhaps data outside of your health (think driving, finance, etc) to be part of the evaluation (or negotiation) process for...
November 18, 2014 at 6:46 am
Give this a try
create function dbo.ProperCase (@name varchar(70))
returns varchar(70)
as
begin
declare @output varchar(70)
declare @upper varchar(70)
declare@space int
declare @first varchar(70)
declare @last varchar(70);
set @upper= rtrim(ltrim(upper(@name)))
set @space= patindex('% %',@upper)
set @first= left(@upper,@space)
set @last= reverse(left(reverse(@upper),@space) )
set @output =...
November 13, 2014 at 5:35 am
The short answer is yes, the long answer is 'it depends what for'.
November 13, 2014 at 2:52 am
Thanks Perry, I spent most of yesterday looking into the column source and destination mappings as you suggested but I'm still struggling. From what I found, I got the...
November 13, 2014 at 2:37 am
Stuart Davies (11/11/2014)
BWFC (11/11/2014)
November 11, 2014 at 2:07 am
One of the people whose name I've seen attached to the kitchen cabinets spam lives just down the road from me. He's a reasonably notorious local businessman who's actually...
November 11, 2014 at 1:51 am
I suspect not as many people will get this right as they should because one of the two identical options returns a wrong answer.
November 11, 2014 at 1:33 am
spaghettidba (11/3/2014)
However I feel his pain: how is anybody without system/network administration skills supposed to understand...
November 4, 2014 at 1:25 am
Thanks Eirikur, I'll have a look at that as soon as I get chance. I think that the only things I hadn't tried in one combination or another were...
October 28, 2014 at 4:27 am
GilaMonster (10/25/2014)
Anyone live anywhere where they can easily get a variety of different dried chillies? Stuff Costeño, New Mexico, Choricero, Arbol, Cascabel, Ancho, Mulatto, Negro, Pasilla?
Have you tried Amazon?
October 25, 2014 at 4:41 pm
GilaMonster (10/22/2014)
Similarly, if you invite people for a braai here, there better not be just burgers, though we don't have tradition of smoking stuff.
We don't have a tradition of good...
October 22, 2014 at 8:11 am
Sean Lange (10/22/2014)
BWFC (10/22/2014)
October 22, 2014 at 7:31 am
Gary Varga (10/22/2014)
Gary Varga (10/22/2014)
If you say so :unsure:
D(r)eadlocks.
I'd have to say that in my opinion that this was not their best results. Having said that maybe, just maybe, there...
October 22, 2014 at 7:05 am
Viewing 15 posts - 826 through 840 (of 1,243 total)