I need to change column datatypes in a database table from varchar to nvarchar in order to support Chinese characters (currently, the varchar
varchar
nvarchar
You can do on non primary key fields:
ALTER TABLE [TableName] ALTER COLUMN [ColumnName] nvarchar(N) null
On the primary key fields it will not work - you will have to recreate the table