Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: A Capital Error

    robert.sterbal 56890 - Monday, February 11, 2019 2:15 PM

    Phil Factor - Monday, February 11, 2019 11:05 AM

  • RE: A Capital Error

    The problem with case-insensitive is that it's not so simple because the concept of case-insensitivity turns out to be cultural.  In English, one can safely round-trip a lower-case string to...

  • RE: Getting the main course right

    Jeff Moden - Thursday, November 22, 2018 5:33 PM

    Ah... beware... I just had a trusted friend tell me that he's been testing...

  • RE: Getting the main course right

    The documentation for TRANSLATE on Microsoft's site is misleading.  Luckily, it's incorrect, because the actual behavior is far more useful than the claimed behavior.  The documentation claims: 

    The behavior...

  • RE: T-SQL Decommenter Part I

    Lee Linares - Monday, November 19, 2018 7:36 AM

    Toby,

    Thanks so much for the quick response.
    I tried your excellent suggestions and found...

  • RE: T-SQL Decommenter Part II

    will 58232 - Thursday, November 15, 2018 12:03 AM

    Or using powershell and regex

    ([regex]"(?im)--.*?$").replace(([regex]"(?s)\/\*.*?\*\/").replace($sql, ""), "")

    That will work much of the time,...

  • RE: T-SQL Decommenter Part I

    Lee Linares - Friday, November 16, 2018 1:36 PM

    Toby,

    Thanks for taking the time to develop and share this code. Very useful.
     I...

Viewing 7 posts - 1 through 7 (of 7 total)