Hi Justin,
the easiest way to create the XML for a Table is to use the SQL scalar
Function XMLGROUP.
The following statement will return and XML-Document with the <rowset> root
element and the <row> row element and the column names as elements in upper
case:
Select xmlgroup(EmployeeNo, Name, FirstName)
from lobstaff;
<rowset><row><EMPLOYEENO>20</EMPLOYEENO><NAME>Bauer</NAME><FIRSTNAME>Herrman
n</FIRSTNAME></row>
<row><EMPLOYEENO>40</EMPLOYEENO><NAME>Hauser</NAME><FIRSTNAME>Birgitta</FIRS
TNAME</row>
...
</rowset>
For returning other information such as renamed row and root elements check
the XMLGROUP description.
You can also use the XML-Functions describe in the IT Jungle Article.
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them
and keeping them!"
?Train people well enough so they can leave, treat them well enough so they
don't want to.? (Richard Branson)
-----Original Message-----
From: MIDRANGE-L [mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of
Justin Taylor
Sent: Donnerstag, 25. Januar 2018 23:52
To: MIDRANGE-L (midrange-l@xxxxxxxxxxxx) <midrange-l@xxxxxxxxxxxx>
Subject: Table to XML file
I need to export a Db2 table to an XML file. I'm working off this IT Jungle
article (
https://www.itjungle.com/2012/08/08/fhg080812-story02/), but it's
rather dated. Is there a newer reference/how-to?
TIA
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe, unsubscribe,
or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take a
moment to review the archives at
https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
http://amzn.to/2dEadiD
As an Amazon Associate we earn from qualifying purchases.