Hi,
in DB2 v9.5 I have table with XML data field. When I execute "select * from table" statement to display XML data from DB2 CLP I get one line output:
Code:
<employees><employee id="1"><name>Mark</name><office>IBM</office></employee><employee id="2"...
I would like to get output each tag into own row something like bellow:
Code:
<employees>
<employee id="1">
<name>Mark</name>
<office>IBM</office>
</employee>
in DB2 CLP, just to see contents of XML in human readable way. How?
Regards