新しいノードを挿入する前にエラーが発生する間、結果のないSQL Server XML変更のトピックに一致します
XQuery [modify()]: Only non-document nodes can be inserted. Found "xs:string ?".
新しいノードの本体:
<formant id="'+lower(newid())+'" name="_name" width="155" height="20" x="125" y="761"
tabindex="0" source-name="_sn" readonly="false" required="false"
font="_fnt"><value></value></formant>
それを修正する方法はありますか?
DECLARE @newNodeData varchar(max) = <formant id="'+lower(newid())+'" name="_name" width="155" height="20" x="125" y="761"
tabindex="0" source-name="_sn" readonly="false" required="false"
font="_fnt"><value></value></formant>
... @newNodeData 変数のテキストの変更
それから
declare @xml xml;
select @xml = t.xmlData //t.xmlData is ntext type
from table t
where id=123
set @xml.modify('declare namespace xsd="http://www.cebip.pl/xml/schematy/formularze/v1.0/definicja-formularza.xsd"; insert sql:variable("@newNodeData") as first into (/xsd:form-definition/xsd:page)[1]')
update table
set xmlData = @newNodeData
where id=123