Just a short post without further explanation.
Pretty printing xml in Oracle 10g and 11g differences quite a bit:
10g:
SELECT XMLTYPE('<html><body><p>Hallo, Welt.</p></body></html>').extract('/') FROM dual; |
11g:
SELECT XMLSERIALIZE(Document XMLTYPE('<html><body><p>Hallo, Welt.</p></body></html>') AS CLOB INDENT SIZE = 2) FROM dual; |
2 comments
Test your code using this site:
https://jsonformatter.org/xml-pretty-print
May I get the full code of the demo page
Post a Comment