Hi!
We have a few tables in our SQL Server (2005 & 2008) database with columns defined as nvarchar(4000). We sometimes need to be able to store more data than that and consider to use nvarchar(max) instead. Now to the questions.
- Are there any performance implications we should know of?
- Is it safe to use "alter table" to do the actual migration or is there another way?
- Anything else we should know before we convert?
Regards Johan