I have a column in SQL Server that is varchar(MAX)
. The column has been populated with that data type. I now want to convert the column to nvarchar(MAX)
to accept unicode characters.
Is there any data loss when I convert this column from varchar(MAX)
to nvachhar(MAX)
?