使用 SQL Server 2012,如果我在 XML 类型列的一行中有以下值:
<ArrayOfScheduledJobParameters xmlns="http://schemas.data.org/ScheduledJobServiceLibrary">
<ScheduledJobParameters>
<Key>OutputFileName</Key>
<Value>CPVR{0}.txt</Value>
</ScheduledJobParameters>
<ScheduledJobParameters>
<Key>DaysBeforeExpiration</Key>
<Value>60</Value>
</ScheduledJobParameters>
<ScheduledJobParameters>
<Key>MaxItemsByReportServiceCall</Key>
<Value>100</Value>
</ScheduledJobParameters>
</ArrayOfScheduledJobParameters>
我想根据元素<Value>
中包含的值更改元素的值<Key>
。具体来说,我希望能够设置<Value>
为 150,其中元素<Key>
包含值“MaxItemsByReportServiceCall”。我所能做的就是更新<ScheduledJobParameters>
. 如果我在 XML DML 上阅读的任何文档中甚至可以找到它,我都找不到如何做到这一点。