我有一个包含一个大 XML 的 CLOB 数据库列:XML_CONF 我通常使用函数 updateXML 来修改 XML 的特定节点,它工作得很好。但是今天遇到了很多麻烦,因为我要修改的节点有时候是空的,这种情况下就不行了……
具有空 textValue 的 XML 示例:
<ns2:ConfigurationTree xmlns:ns2="com.xxxx" xmlns="com.xxxx.yyyy">
<ns2:ConfigurableProduct ...>...
<ns2:CPNode name="cpX">...
<ns2:FormProperty name="fpX">
<ns2:SingleValuation isCommentUserChoice="false" isValueUserChoice="false" isQtyUserChoice="false">
<ns2:Value>
**<ns2:textValue/>**
</ns2:Value>
</ns2:SingleValuation>
</ns2:FormProperty>
</ns2:CPNode>
</ns2:ConfigurableProduct>
带有 textValue 的 XML 示例:
<ns2:ConfigurationTree xmlns:ns2="com.xxxx" xmlns="com.xxxx.yyyy">
<ns2:ConfigurableProduct ...>...
<ns2:CPNode name="cpX">...
<ns2:FormProperty name="fpX">
<ns2:SingleValuation isCommentUserChoice="false" isValueUserChoice="false" isQtyUserChoice="false">
<ns2:Value>
**<ns2:textValue>123456</ns2:textValue>**
</ns2:Value>
</ns2:SingleValuation>
</ns2:FormProperty>
</ns2:CPNode>
</ns2:ConfigurableProduct>
例如,要将 textValue 内容替换为“78910”,我尝试这样做来处理两种情况:
update T_TABLE set XML_CONF = updatexml(xmltype(XML_CONF),
'//FormProperty[@name="fpX"]//Value/textValue',xmltype('<textValue>78910</textValue>'),
'//FormProperty[@name="fpX"]//Value/textValue/text()','78910',
'xmlns:ns2="com.xxxx" xmlns="xxxx.yyyy"').getClobVal();
但结果破坏了 XML(节点中不再有前缀和 xmlns 为空):
<ns2:ConfigurationTree xmlns:ns2="com.xxxx" xmlns="com.xxxx.yyyy">
<ns2:ConfigurableProduct ...>...
<ns2:CPNode name="cpX">...
<ns2:FormProperty name="fpX">
<ns2:SingleValuation isCommentUserChoice="false" isValueUserChoice="false" isQtyUserChoice="false">
<ns2:Value>
**<textValue xmlns="">78910</textValue>**
</ns2:Value>
</ns2:SingleValuation>
</ns2:FormProperty>
</ns2:CPNode>
</ns2:ConfigurableProduct>
如果我回想相同的请求,使用不同的 textValue,之后它不会再更新任何内容......我认为这是因为节点上的前缀被破坏了......
我尝试用 XMLQuery (Oracle 12) 来做,但这是同样的问题。
编辑
它几乎适用于:
update T_TABLE set XML_CONF = updatexml(xmltype(XML_CONF),
'//FormProperty[@name="fpX"]//Value/textValue/text()','78910',
'//FormProperty[@name="fpX"]//Value/textValue[not(text())]',xmltype('<textValue>78910</textValue>'),
xmlns:ns2="com.xxxx" xmlns="xxxx.yyyy"' ).getClobVal();
但是在输出中我没有新的 ns2:textValue 节点,我只有:
<ns2:Value><textValue xmlns="">78910</textValue></ns2:Value>
为什么它打破了 ns2 前缀,为什么它放了一个空的 xmlns 属性?
如果我在新节点中指定命名空间,它可以工作,但它似乎没用,因为它们已经在根节点中声明:
update T_TABLE set XML_CONF = updatexml(xmltype(XML_CONF),
'//FormProperty[@name="fpX"]//Value/textValue/text()','78910',
'//FormProperty[@name="fpX"]//Value/textValue[not(text())]',xmltype('<ns2:textValue xmlns:ns2="com.xxxx" xmlns="xxxx.yyyy">78910</ns2:textValue>'),
'xmlns:ns2="com.xxxx" xmlns="xxxx.yyyy"' ).getClobVal();
给 :
<ns2:textValue xmlns:ns2="com.xxxx" xmlns="xxxx.yyyy">78910</ns2:textValue></ns2:Value>