Tagged Questions
2
votes
1answer
576 views
Oracle xmltype extract function never deallocate/reclaim memory until session down
I'm using Oracle 9.2x to do some xmltype data manipulation.
The table as simple as tabls(xml sys.xmltype), with like 10000 rows stored. Now I use a cursor to loop every row, then doing like
...
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>
...
0
votes
1answer
314 views
Oracle XML type parsing issue
My XML File is stored in oracle column
<?xml version="1.0" encoding="UTF-8"?>
<BasicProductTemplateType xmlns="http://www.asia.com/app/Product_2_0" ...