Forum Replies Created

Viewing 15 posts - 196 through 210 (of 221 total)

  • RE: SQL Hex Character conversion?!

    Thanks John Ill get our developers to look in to it and see if they can fathom anything out!!

  • RE: SQL Hex Character conversion?!

    John, I get the following result:

    Lukac

    I.e. missing the accent on the c but not having the & # business!

    The collation of the db is set to:

    SQL_Latin1_General_CP1_CI_AS

    The client machine in this...

  • RE: SQL Hex Character conversion?!

    I thought it might be confusing looking at it...

    See the 1.jpg - that is the exact data being entered, and the exact form it's entered in.

    If I basically...

  • RE: PATINDEX - help with list of values!

    I completely had not thought of doing it like that GSquared, it's a much tidier and simpler way of doing it that works just fine! - I tend to find...

  • RE: upper and lower case pattern detection?

    Note that [ABCDEFGHIJKLMNOPQRSTUVWXYZ] <> [A-Z] since [A-Z] = [AbBcCdD...zZ], confusingly!

    I didn't know that, but it does make a lot of sense with something I was just doing - so thanks...

  • RE: Propercase Function Assistance!

    I think that may have to be the case, there are many inconsistencies with the naming conventions - van for example - sometimes its lower case, sometimes its capitalized, usually...

  • RE: upper and lower case pattern detection?

    Hmm, I kinda see what your getting at, however, I've tinkered and came up with something that works, all be it not overly elegant!

    declare @string varchar(50)

    select @string = 'Mike'

    IF

    NOT

    (ASCII(substring(@string,1,1))...

  • RE: USE - extend for connection?

    I'm now trying to see how I could save this and use it as a template when creating a new query from within Management studio - i.e. create new query...

  • RE: USE - extend for connection?

    SNAP! hehe

  • RE: USE - extend for connection?

    Hmm, I'm not too sure what you mean there, however, a colleague advised me that I could get round it by adding an ELSE BEGIN END after...

  • RE: USE - extend for connection?

    Hey Michael,

    Close, its more something for me personally actually! - With identical databases but just different servers its oh to easy to run a query on the local server...

  • RE: Propercase Function Assistance!

    I'd discovered that if I remove the space from the patindex string it works.

    However, I'm not fully aware of the consequences of removing this space character from that string -...

  • RE: Propercase Function Assistance!

    The purpose of this propercase function is basically to tidy names in our CRM system, on the whole it works quite well, however, I've tracked down a couple of issues:

    Original...

  • RE: Propercase Function Assistance!

    The first time the original string...

    '%[-( '']%'

    Was replaced by

    '%[-( ''].%'

    And it did not work, it didn't capitalize anything!

    So, I changed it to

    '%[-( ''.]%'

    As per your instructions and it worked

    However, on...

  • RE: Propercase Function Assistance!

    Thanks Ryan, that worked a treat!

    One thing which I didn't think would matter is the position of the '.' - I put it in the same place in each of...

Viewing 15 posts - 196 through 210 (of 221 total)