Forum Replies Created

Viewing 15 posts - 1,096 through 1,110 (of 1,240 total)

  • RE: Need some help - Float column type, force two decimal numbers

    gpascanu (4/11/2014)


    Hi,

    I have the following values in a Float column

    266.5

    280.98

    127.558

    How do I set the precision in a SELECT? I need to display two digits after the decimal point. My problem...

  • RE: Today's Random Word!

    TomThomson (4/10/2014)


    Ed Wagner (4/10/2014)


    Kurt W. Zimmerman (4/10/2014)


    Revenant (4/10/2014)


    Ed Wagner (4/10/2014)


    SQLRNNR (4/10/2014)


    tracker

    Hunt

    Dogs

    Sun

    Set

    Up

    Charm

    Stuart beat me to it!

    Feeder

    Club

  • RE: Arithmetic overflow error

    BWFC (4/10/2014)


    With the Numeric data type, the first digit in the bracket gives the maximum number of digits for the complete figure and the second is the maximum number of...

  • RE: Arithmetic overflow error

    With the Numeric data type, the first digit in the bracket gives the maximum number of digits for the complete figure and the second is the maximum number of digits...

  • RE: Today's Random Word!

    SQLRNNR (4/8/2014)


    gen-pop

    Ice-pop

  • RE: Find the Numbers from a string

    milos.radivojevic (4/8/2014)


    BWFC (4/8/2014)


    That solution works but will give an error if the string consists of only numerals.

    Thank you BWFC for the correction!

    A great thing in this forum is whenever...

  • RE: Find the Numbers from a string

    That solution works but will give an error if the string consists of only numerals.

    declare @rowstring as varchar(max) = '1251596483'

    select

    case

    when isnumeric(@rowstring) = 1 then @rowstring

    else

    REVERSE(

    SUBSTRING(REVERSE(@rowstring),PATINDEX('%[0-9]%',

    REVERSE(@rowstring)),PATINDEX('%[^0-9]%',

    SUBSTRING(REVERSE(@rowstring),(PATINDEX('%[0-9]%', REVERSE(@rowstring))),LEN(@rowstring)))-1))

    end

    That will...

  • RE: Today's Random Word!

    Bells

  • RE: Today's Random Word!

    Ed Wagner (4/7/2014)


    TomThomson (4/4/2014)


    Revenant (4/4/2014)


    SQLRNNR (4/4/2014)


    mishka

    Grishka

    Shishka

    Bob

    Shilling

  • RE: Today's Random Word!

    Kurt W. Zimmerman (4/3/2014)


    SQLRNNR (4/3/2014)


    Ed Wagner (4/3/2014)


    crookj (4/3/2014)


    Revenant (4/3/2014)


    Ed Wagner (4/3/2014)


    JAZZ Master (4/3/2014)


    SQLRNNR (4/3/2014)


    rigolo

    Laugh

    Cry

    Baby

    Girl

    Daddy

    Mommy

    matriarch

    Patriarch

  • RE: Today's Random Word!

    Ed Wagner (4/1/2014)


    TomThomson (4/1/2014)


    crookj (4/1/2014)


    Ed Wagner (4/1/2014)


    SQLRNNR (4/1/2014)


    bread

    Dough

    Won

    Lost

    Dog

    Day

  • RE: Telepresence

    http://www.bbc.co.uk/news/technology-26822315

    It seems to be a theme

  • RE: Today's Random Word!

    Kurt W. Zimmerman (3/31/2014)


    knucklehead

    Drummer Caveman

  • RE: Today's Random Word!

    TomThomson (3/28/2014)


    Kurt W. Zimmerman (3/28/2014)


    Micro

    Scope

    Scale

  • RE: The Unusable User

    It's possible that he is in the wrong context, but we'll assume based on the intro that he is in the correct place.

    I'm admittedly a bit of a newbie...

Viewing 15 posts - 1,096 through 1,110 (of 1,240 total)