Forum Replies Created

Viewing 15 posts - 661 through 675 (of 962 total)

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (4/24/2014)


    GilaMonster (4/24/2014)


    Steve Jones - SSC Editor (4/24/2014)


    rodjkidd (4/23/2014)


    Hope the op and recovery go well. You gotta make it over for SQL Bits.

    Rodders...

    On the shed-dyule for...

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (4/24/2014)


    rodjkidd (4/23/2014)


    Hope the op and recovery go well. You gotta make it over for SQL Bits.

    Rodders...

    On the shed-dyule for Bits, and planning on it. Can't...

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (4/23/2014)


    rodjkidd (4/23/2014)


    Grant,

    Forgot to say, I fly in Friday afternoon so can't make the SQL in the City, but have fun!

    Rodders...

    Enjoy, you two. Can't make this...

  • RE: Are the posted questions getting worse?

    Grant,

    Forgot to say, I fly in Friday afternoon so can't make the SQL in the City, but have fun!

    Rodders...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (4/23/2014)


    rodjkidd (4/23/2014)


    Any of the Threadizens going to SQL Saturday in Chicago this weekend?

    I'm over for some more SQL Skills training, so thought I might as well attend.

    Looks as...

  • RE: Are the posted questions getting worse?

    Any of the Threadizens going to SQL Saturday in Chicago this weekend?

    I'm over for some more SQL Skills training, so thought I might as well attend.

    Looks as though a couple...

  • RE: Are the posted questions getting worse?

    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)


    OK, now I'll be keeping a better eye on y'all. For the first time in like...

  • RE: Are the posted questions getting worse?

    Greg Edwards-268690 (4/16/2014)


    WayneS (4/16/2014)


    Steve Jones - SSC Editor (4/16/2014)


    OK, now I'll be keeping a better eye on y'all. For the first time in like 3 years I have no trips...

  • RE: remove digits

    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...

  • RE: remove digits

    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...

  • RE: Are the posted questions getting worse?

    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...

  • RE: Are the posted questions getting worse?

    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...

  • RE: Are the posted questions getting worse?

    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...

  • RE: Are the posted questions getting worse?

    The Dixie Flatline (3/31/2014)


    Ed Wagner (3/31/2014)


    rodjkidd (3/31/2014)


    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...

  • RE: Are the posted questions getting worse?

    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...

Viewing 15 posts - 661 through 675 (of 962 total)