Re: [ADMIN] [SQL] upper/lower for german characters

2004-11-13 Thread Contact AR-SD.NET
Hi Markus, I tried different types of encoding, LATIN1 to LATIN 9, still the same behavior. I read a few forums, but there I couldn't find a concrete answer for this. So... still searching. Best regards, Andy. - Original Message - From: "Markus Schaber" <[EMAIL PROTECTED]> To: "Andrei B

Re: [ADMIN] Help---- Urgent

2003-12-12 Thread Contact
Create a new column alter add column varchar(25); Then copy the old column into the new column: update set = ; Drop the last column: alter drop column ; Rename the column: alter rename column to ; Take care for INDEXES if there are any. This should do it. Best regards. - Origin