에러:

Conversion of one or more characters from XML to target collation impossible


원인:

Xml에서 varchar로 변경할 시 발생함.


해결:

Xml에서 nvarchar로 변경하면 됨.


convert(nvarchar(max), @xmlCol)


+ Recent posts