Forum Replies Created

Viewing 15 posts - 58,381 through 58,395 (of 59,070 total)

  • RE: Current Date minus one???

    If you just want your script to give you info from yesterday no matter what today is, you don't need FLOAT and you don't need to pass a date.  I...

  • RE: Seeking script to drop/create all indexes in database

    Not sure why you'd want to do that when a good maintenance plan will achieve the same result of having properly ordered and defragmented indexes.  So, I have to ask,...

  • RE: Utility Procedures

    Verrryyyy nice, David... One of the better articles I've seen on this type of stuff.  And, if someone takes the time to read it, there are all sorts of goodies...

  • RE: Divide By Zero

    Right on, Serqiy...

  • RE: Summarizing Question

    I agree but...

    I've found that when the "boss", who doesn't really know how to use a spreadsheet, says he wants to open the result set using Excel from a CSV...

  • RE: Execute a large text string

    ...and, if you do write the TEXT out to a text file for execution, use OSQL instead of ISQL because ISQL is deprecated compared to OSQL.

    Just an opinion but both...

  • RE: Print Dates between Min & Max Dates

    I had a feeling you were one of the smart ones.    Thanks for the feedback.

  • RE: Removing High Ascii (>128)

    Actually, I believe the smart quotes are CHAR(147) and CHAR(148)... run the following in Query Analyzer and see if you agree...

    PRINT CHAR(147)

    PRINT CHAR(148)

    PRINT CHAR(143)

    PRINT CHAR(146)

    PRINT ASCII('“')...

  • RE: Print Dates between Min & Max Dates

    Howdy Jeff,

    You may want to consider using a temp table instead of a table variable here... table variables don't use statistics so they're inherently slower... both temp tables and table variables...

  • RE: Convert Money to Text

    Daaaannnngggg.... Guess I'll stick with plain ol' English, SQL, and some pig-latin....

  • RE: Convert Money to Text

    Vladan,

    Thank you very much for taking the time to explain all this because it's very interesting. I do have to ask... are you a linguist or just really well...

  • RE: Convert Money to Text

    That's ok... I guess I'm pretty happy that American English is my native language   except for the fact that words like "Dude" have about 32...

  • RE: Convert Money to Text

    Cedar72,

    Good find... I'm amazed at how comparitively fast this one is compared to the other methods I've seen (recursion is cool)... returns 10000 records in a little over 3 seconds...

  • RE: Also how to insert with quotes like ''''Mann''''ys Pizza''''

    Even QUOTENAME comes up with the same problem...

    When you want to make a single quote part of the text to be inserted, you have to use two of them side...

  • RE: Updating Multiple Tables

    Scott...

    What editor are you using?  Thanks...

Viewing 15 posts - 58,381 through 58,395 (of 59,070 total)