Subject RE: [firebird-support] Migrating some columns from win1250 to utf8
Author Helen Borrie
At 07:38 PM 2/02/2009, Set wrote:
>1. Take a backup of your database (nice to have)
>2. Create a new field with the desired character set and commit
>3. Copy the contents of the old field to the new field and commit (UPDATE MyTable SET NewField = OldField)

3. update mytable set newfield = cast (oldfield as varchar(x) character set utf8)

where 'x' is the same size for both oldfield and newfield

./heLen