Tagged Questions
3
votes
1answer
538 views
How to get first element by XPath in Oracle
In my Oracle db I have records like this one:
<ROOT>
<Event>
<Type>sldkfvjhkljh</Type>
<ID>591252</ID>
</Event>
<Data>
<File>
...
2
votes
1answer
3k views
How to extract leaf nodes from Oracle XMLTYPE
I want to extract only the leaf nodes from an XMLTYPE object in Oracle 10g
SELECT
t.getStringVal() AS text
FROM
TABLE( XMLSequence(
XMLTYPE(
'<xml>
...