Oracle
 sql >> Database >  >> RDS >> Oracle

Oracle UpdateXML() cambia la struttura XML?

Penso che tu possa evitare il problema sostituendo il testo vuoto con un valore temporaneo, aggiornando tutto il resto del testo e quindi sostituendo il valore temporaneo con un valore nullo.

Non capisco XPath, probabilmente c'è un modo molto migliore per farlo, ma sembra funzionare:

SELECT
    --#3: Replace the temporary value with null, this keeps the start and end tag
    UpdateXML(
        --#2: Replace everything but the temporary value
        UpdateXML(
            --#1: Replace empty text with a temporary value
            UpdateXML(xmlData, '/TEST/VALUE[not(text())]', '<VALUE>TEMPORARY VALUE</VALUE>')
        ,'/TEST/VALUE[text()!="TEMPORARY VALUE"]/text()', 'hello')
    ,'/TEST/VALUE[text()="TEMPORARY VALUE"]/text()', null) examle
FROM (SELECT XMLType('<TEST><VALUE>hi</VALUE><VALUE>hola</VALUE><VALUE></VALUE></TEST>') as xmlData FROM DUAL);