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
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