Viewing 15 posts - 661 through 675 (of 955 total)
Steve Jones - SSC Editor (4/17/2014)
rodjkidd (4/17/2014)
Greg Edwards-268690 (4/16/2014)
WayneS (4/16/2014)
Steve Jones - SSC Editor (4/16/2014)
April 22, 2014 at 6:57 am
Greg Edwards-268690 (4/16/2014)
WayneS (4/16/2014)
Steve Jones - SSC Editor (4/16/2014)
April 17, 2014 at 3:22 am
Luis,
Thanks for that, I had a complete brain freeze on how to check for A-Z and a-z. I tried A-z - which was wrong. 🙂
I did also think there was...
April 3, 2014 at 10:25 am
Given that the OP's sample data includes spaces as well as numbers...
CREATE TABLE [dbo].[Names](
[Name] [varchar](200) NULL
) ON [PRIMARY]
INSERT INTO NAMES
VALUES ('22rajuvar'),
('45 vamsgui'),
('87 praveen'),
('67kumar'),
('32 vamshi')
SELECT REVERSE(LEFT(REVERSE(name), (PATINDEX('%[^a-z]%', REVERSE(NAME)))-1)) AS CleanedName
FROM...
April 3, 2014 at 8:07 am
I worked with one dev, when I did a bit dev, pity I don't do as mush I as I'd, we still use ON ERROR GOTO don't we?
Anyway it was...
April 2, 2014 at 2:36 am
So my friend has had an internal job move while on maternity leave. In fact she went back to find that her part of the telco business has been sold...
April 1, 2014 at 2:50 am
Sean Lange (3/31/2014)
Sean, neat wrapping it up in a proc, worth adding to a DB_Admin db.
Yep that's where I keep it. 😛
Cool.
Always find it funny when I start a new...
April 1, 2014 at 2:43 am
The Dixie Flatline (3/31/2014)
Ed Wagner (3/31/2014)
rodjkidd (3/31/2014)
Got an email from friend who was stuck on working out how many days old a debt is at...
March 31, 2014 at 3:43 pm
I do like paying it forward.
Got an email from friend who was stuck on working out how many days old a debt is at the end of the month, and...
March 31, 2014 at 12:57 pm
Gail, you had 3 submitted (I think) as the order is random, I voted for the Bad Plan, Sit! one, nice title. So yes the bribe worked! Er - did...
March 27, 2014 at 5:54 am
So SQL Bits session voting has opened, I've picked my 10 which out of nearly 300 submitted was tough. Good luck to anyone who has submitted from the Thread.
Rodders...
March 27, 2014 at 5:03 am
Richard Warr (3/14/2014)
Do any of you guys have random people endorse you for skills, that you know they have no idea if you can do?
Seems quite widespread. I have people...
March 14, 2014 at 9:41 am
BrainDonor (3/14/2014)
paul.knibbs (3/14/2014)
jcrawf02 (3/13/2014)Do any of you guys have random people endorse you for skills, that you know they have no idea if you can do?
I've had people who should...
March 14, 2014 at 3:42 am
andrew gothard (3/13/2014)
rodjkidd (3/13/2014)
A B A C A B
Just repeat...
March 13, 2014 at 10:50 am
I find when answering interview questions, and in particular multiple choice that the following pattern will get you close to 100%
A B A C A B
Just repeat until you have...
March 13, 2014 at 10:17 am
Viewing 15 posts - 661 through 675 (of 955 total)