Skip to content

Instantly share code, notes, and snippets.

@brunkb
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunkb/fc74157713d700f22425 to your computer and use it in GitHub Desktop.
Save brunkb/fc74157713d700f22425 to your computer and use it in GitHub Desktop.
CLOB Advanced Update
INSERT INTO myclobs (data, date_created) VALUES('<attrs><attr name="name"><string>Barney</string></attr></attrs>',
SYSDATE);
UPDATE myclobs m SET data=UPDATEXML(
XMLTYPE.createXML(data),'/attrs/attr[@name="name"]/string /text()','Gumble').getClobVal()
WHERE m.id=26;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment