This function deletes a user supplied
XML tag from the target XML document or an XML element,
which matches the path provided as the XPath expression.
The prototype for defining an
DELETEXML function is shown below,
DELETEXML(<XML_Document> | <XML_Element>,
<XPath_Expression>)
The SQL deletes the Cost tag from the
parent XML document as shown below,
UPDATE book_store
SET book_details_xml=deletexml(book_details_xml,'/Rack1/Cost')
WHERE book_id
=1001;
1 rows updated.
After the
Cost tag is
deleted from the parent XML document, the EXTRACTVALUE
function returns Null for that tag as it is not available
anymore as shown below.
select extractvalue(book_details_xml,'/Rack1/Cost')
from book_store;
Result:
Null
==================================================
DELETEXML
removes elements from the document.
SELECT
DELETEXML
(
DELETEXML
(
OBJECT_VALUE,
'//CANTON[DETAILS//LANGUAGE!="French"]'
),
'//DETAILS'
)
FROM
WORLD;
XMLSERIALIZE(DOCUMENTDELETEXML(D
--------------------------------
< COUNTRY ID="CH">
<NAME>Switzerland</NAME>
<CANTON_LIST>
<CANTON ID="VD">
<NAME>Vaud</NAME>
</CANTON>
<CANTON ID="NE">
<NAME>Neuchatel</NAME>
</CANTON>
<CANTON ID="GE">
<NAME>Geneva</NAME>
</CANTON>
<CANTON ID="JU">
<NAME>Jura</NAME>
</CANTON>
</CANTON_LIST>
< /COUNTRY>
The inner DELETEXMLremoves the cantons with a language different
than French and the outer DELETEXML removes every DETAILS
instance.
|
|
|
Oracle Training from Don Burleson
The best on site
"Oracle
training classes" are just a phone call away! You can get personalized Oracle training by Donald Burleson, right at your shop!

|
|
|

|
|
Burleson is the American Team

Note:
This Oracle
documentation was created as a support and Oracle training reference for use by our
DBA performance tuning consulting professionals.
Feel free to ask questions on our
Oracle forum.
Verify
experience!
Anyone
considering using the services of an Oracle support expert should
independently investigate their credentials and experience, and not rely on
advertisements and self-proclaimed expertise. All legitimate Oracle experts
publish
their Oracle
qualifications.
Errata?
Oracle technology is changing and we
strive to update our BC Oracle support information. If you find an error
or have a suggestion for improving our content, we would appreciate your
feedback. Just
e-mail:
and include the URL for the page.
Copyright © 1996 - 2020
All rights reserved by
Burleson
Oracle ®
is the registered trademark of Oracle Corporation.
|
|