I have table with two varchar
columns first_name
and last_name
.
Now I need to convert these columns to nvarchar
in order to support UTF-8.
I choose nvarchar
datatype in SSMS for these columns and when I try to enter some UTF-8 data, my symbols converts to question marks. For example, if I input йцукен
(Ukrainian) it will be converted to ??????
.
What is the problem and how to fix it?
Thanks.