views:

29

answers:

1

I realized after populating the table that it contains special encoding for foreign characters. I changed it to nvarchar but how do update the records already in the table since I still see it in the table. for example

Börsenblatt

+5  A: 

If you already inserted the foreign characters into a single-byte character field (varchar, text) and changed the field to nvarchar, there is no way to retrieve the foreign characters in the existing records, unfortunately you will need to update or delete and reinsert from the original data source.

Roger Harvest