I have an XML column in my MSSQL database whose schema looks similar to this:
<Form>
<Version>1000</Version>
<OtherValues />
</Form>
And I need to manually change (via script) all rows' Version
numbers to 1001. Upon searching, I can infer that I'm going to be using the .modify
XPath function but all examples I've found have been for inserting nodes, not editing them.
Could someone shed some light on how to do this?
Example data setup:
Pre-change data:
Data update:
Post-change data:
Things to note:
replace value of
requires that the 'to-be-replaced' expression identifies a "statical singleton", ie the parser must be able to work out that it refers to a single value - hence the[1]
.modify
! So if you have multiple XML nodes in a single row, you will have to iterate manually