Atualizar tag xml em uma coluna CLOB no Oracle

Eu tenho esse valor xml em uma coluna CLOB no Oracle 11g:

<Energy xmlns="http://euroconsumers.org/notifications/2009/01/notification">    
    <Gender>M</Gender>
    <FirstName>MAR</FirstName>
    <Name>VAN HALL</Name>
    <Email/><Telephone>000000000</Telephone>
    <InsertDate>2013-10-09</InsertDate>
</Energy>

Quero atualizar o valor de InserDate para várias linhas.

Eu estava usando o próximo comando sql abaixo:

update tmp_tab_noemail_test p1 
set p1.sce_msg = updatexml(xmltype(p1.sce_msg),
                 '//Energy/InsertDate/text()','Not Valid').getClobVal()

Mas não está funcionando.

Você tem algumas idéias para modificar apenas os valores da tag xml de InsertDate?

Agradecemos antecipadamente

questionAnswers(1)

yourAnswerToTheQuestion