Hi
You have to convert your XML to NVARCHAR(MAX), then you can insert into a TEXT column:
UPDATE @t SET MyText = CONVERT(NVARCHAR(MAX), MyXml
Two things:
* TEXT data type is marked as deprecated in SSE2k5 and will be removed in future versions (SSE2k8 still supports)
* XML is Unicode, so you should use NTEXT (better NVARCHAR(MAX)).
Greets
Flo