0

我有一个包含一个大 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>
4

1 回答 1

1

你可以这样做:

update T_TABLE set XML_CONF = updatexml(xmltype(XML_CONF),
  '//ns2:FormProperty[@name="fpX"]//ns2:Value/ns2:textValue/text()','78910',
  '//ns2:FormProperty[@name="fpX"]//ns2:Value/ns2:textValue[not(text())]',
     xmlelement("ns2:textValue", xmlattributes('com.xxxx' as "xmlns:ns2"), '78910'),
  'xmlns:ns2="com.xxxx" xmlns="com.xxxx.yyyy"').getClobVal();

识别文本节点或没有文本的节点;或者如果ns2与默认值相同(来自评论):

update T_TABLE set XML_CONF = updatexml(xmltype(XML_CONF),
  '//FormProperty[@name="fpX"]//Value/textValue/text()','78910',
  '//FormProperty[@name="fpX"]//Value/textValue[not(text())]',
     xmlelement("ns2:textValue", xmlattributes('com.xxxx' as "xmlns:ns2"), '78910'),
  'xmlns:ns2="com.xxxx" xmlns="com.xxxx"').getClobVal();

db<> 摆弄你真正的命名空间。新创建的textValue节点重新声明ns2但在功能上应该无关紧要。

当然,updateXML 在 12c 中已被弃用,但您应该能够使用 Xquery update 做同样的事情。事实上,这更简单:

update t_table set xml_conf = xmlquery(
   'copy $d := .
    modify (
      for $i in $d//*:FormProperty[@name="fpX"]//*:Value/*:textValue
        return replace value of node $i with $newValue
    )
    return $d'
    passing xmltype(xml_conf), '78910' as "newValue"
    returning content
  ).getClobVal();

为了简单起见,我对命名空间进行了通配符(实际上,我还没有弄清楚如何使它与命名空间前缀一起工作,即使ns2与默认值不同)。出于某种原因,在 db<>fiddle 和 SQL Fiddle(均为 11.20.02)上出现“ORA-19112:评估期间引发错误:XQuery Update connot becompiled”;但在我的 11.2.0.4 和 12.2.0.1 数据库上工作正常。

您可以为现有的相关节点添加检查,以避免不必要的更新。

于 2018-07-12T17:21:23.147 回答