Forum Replies Created

Viewing 15 posts - 3,121 through 3,135 (of 14,953 total)

  • RE: SSIS Help

    Password protect? As in save it as a file so it can be deployed somewhere and encrypt the file? Or as in protect privileged data within the package...

  • RE: convert date in sql

    Generally, you're better off doing that kind of thing in the presentation layer, not in the query or the database.

    That allows different users/applications/services to consume the data the way they...

  • RE: convert date in sql

    daveriya (10/13/2011)


    IS THIS correct

    set @Account_date = convert(datetime,@Account_date,126)

    That probably won't do anything useful for you.

    Storing the data in a particular format is only useful if you're converting to a string...

  • RE: Are the posted questions getting worse?

    Roy Ernest (10/13/2011)


    I am at the Presentation of Steve jones for the sql pass. MS supported event and guess what laptop Steve is using? An Apple.. 😀

    I like it!

    Even...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (10/13/2011)


    OMG

    Really??

    Yup.

  • RE: convert date in sql

    daveriya (10/13/2011)


    i am getting this error : [Microsoft][SQL Native Client][SQL Server]Conversion failed when converting datetime from character string.

    i place 'set @Account_date = convert(datetime,'yyyy-mm-ddThh:mm:ss.mmm',126)'

    When was yyyy-mm-ddThh:mm:ss.mmm?

    That's a format, not a...

  • RE: Challenging table join problem

    It's a single equality comparison. It's going to be faster than a range comparison.

    It will force the scales to be integer values. You won't be able to extend...

  • RE: Field names with hyphens

    Is the remote server SQL Server, or something else?

  • RE: Are the posted questions getting worse?

    Jeff Moden (10/13/2011)


    L' Eomot Inversé (10/13/2011)


    SQLRNNR (10/13/2011)


    GSquared (10/13/2011)


    Ninja's_RGR'us (10/13/2011)


    BrainDonor (10/13/2011)


    I know a few users I'd like to send into space.

    Yup but the thing is they'll come back. Not really...

  • RE: IN list with a variable

    Ninja's_RGR'us (10/13/2011)


    GSquared (10/13/2011)


    Ninja's_RGR'us (10/13/2011)


    GSquared (10/13/2011)


    That'll work. Might end up with problems in terms of cached execution plans being good for one or the other but not both, and so...

  • RE: r2 upgrade

    Yes.

  • RE: Challenging table join problem

    Ceiling won't get the same results as the other queries. Floor will. Try it with that.

    Ceiling is dropping any that are higher than the highest scale value. ...

  • RE: IN list with a variable

    Ninja's_RGR'us (10/13/2011)


    GSquared (10/13/2011)


    That'll work. Might end up with problems in terms of cached execution plans being good for one or the other but not both, and so on.

    You might...

  • RE: IN list with a variable

    That'll work. Might end up with problems in terms of cached execution plans being good for one or the other but not both, and so on.

    You might want to...

  • RE: using varchar and char

    Another thing to keep in mind is that varchar storage takes more bytes than char storage, since it has to also store the length. Plus, because of the way...

Viewing 15 posts - 3,121 through 3,135 (of 14,953 total)