I have a VARCHAR(MAX) field which is being interfaced to an external system in XML format. The following errors were thrown by the interface:
VARCHAR(MAX)
XML
You need to use nvarchar(max) instead of varchar(max) but otherwise the change is fine.
nvarchar(max)
varchar(max)