Viewing 15 posts - 196 through 210 (of 221 total)
Thanks John Ill get our developers to look in to it and see if they can fathom anything out!!
May 27, 2008 at 4:05 am
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...
May 23, 2008 at 9:12 am
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...
May 23, 2008 at 2:29 am
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...
May 21, 2008 at 1:57 am
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...
May 19, 2008 at 4:48 am
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...
May 19, 2008 at 4:45 am
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))...
May 16, 2008 at 10:19 am
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...
May 16, 2008 at 5:33 am
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...
May 16, 2008 at 5:30 am
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...
May 16, 2008 at 2:26 am
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 -...
May 15, 2008 at 8:42 am
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...
May 15, 2008 at 5:06 am
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...
May 14, 2008 at 8:00 am
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...
May 14, 2008 at 6:35 am
Viewing 15 posts - 196 through 210 (of 221 total)