472,780 Members | 1,918 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,780 software developers and data experts.

import XML file into DB2 table

Hi all,

I have 6 tables inside a MS Access 2003 mdb file.

I want to convert them as DB2 version -8 tables in AIX 5.2.

I have exported them as 6 XML files.

The XML files look fine.
Each record is embeded by a tag which is the table name.
Then, each column is embeded by a tag which is the column name.
Even memo fields are represented as multi-lines within its tag.

Each whole file just looks like a table of m x n cells, nice and neat.

However, after I transfer the XML files into AIX for DB2 importing,
it seems to me that DB2 has no such an importing option for XML.

There are options for IXF, DEL (i.e. CSV), ... etc but seems not for
XML.

Does anyone has similar experience ?

Does anyone know know to import that XML file into a table in DB2 ?

Thanks in advance.
Alvin SIU
Jun 27 '08 #1
4 10180
On Jun 22, 7:45*am, Alvin SIU <alvin....@gmail.comwrote:
Hi all,

I have 6 tables inside a MS Access 2003 mdb file.

I want to convert them as DB2 version -8 tables in AIX 5.2.

I have exported them as 6 XML files.

The XML files look fine.
Each record is embeded by a tag which is the table name.
Then, each column is embeded by a tag which is the column name.
Even memo fields are represented as multi-lines within its tag.

Each whole file just looks like a table of m x n cells, nice and neat.

However, after I transfer the XML files into AIX for DB2 importing,
it seems to me that DB2 has no such an importing option for XML.

There are options for IXF, DEL (i.e. CSV), ... etc but seems not for
XML.

Does anyone has similar experience ?

Does anyone know know to import that XML file into a table in DB2 ?

Thanks in advance.
Alvin SIU
hi,

there is no xml-import option.
if you want to use xml as transfer-tool then you have to use the xml-
extender on the db2 side.

cu

ferdinand
Jun 27 '08 #2
If it's a one time thing I'd recommend writing a VBA Macro in MS
Access that loops through the rows in the tables and writes a SQL
INSERT statement for each row of the table to disk.

Then execute the SQL statements in that file.

If you don't want to use VBA then you could read the XML file in your
favorite programming language and similarly create an output-script
file of INSERT statements.
Jun 27 '08 #3
Alvin SIU wrote:
Hi all,

I have 6 tables inside a MS Access 2003 mdb file.

I want to convert them as DB2 version -8 tables in AIX 5.2.
The XML support in DB2 8 is rather sparse (quite a bit for generating
XML from tables, but not for parsing or importing it - that stuff was
added in DB2 9).
I have exported them as 6 XML files.

The XML files look fine.
Each record is embeded by a tag which is the table name.
Then, each column is embeded by a tag which is the column name.
Even memo fields are represented as multi-lines within its tag.

Each whole file just looks like a table of m x n cells, nice and neat.

However, after I transfer the XML files into AIX for DB2 importing,
it seems to me that DB2 has no such an importing option for XML.

There are options for IXF, DEL (i.e. CSV), ... etc but seems not for
XML.
IXF, delimited (CSV), and fixed-width text files each represent tables
of data (columns and rows). XML files represent a tree hierarchy of
information. A table-like structure as you describe is merely a
"special case" - moreover there are multiple ways of specifying such a
table-like structure in XML (attributes or elements for columns, does
ordering matter or are columns matched by name, if using elements, do
the element tags name the columns or are attributes used for this, if
using attributes how do you specify "abnormal" column names containing
spaces, etc. etc. etc.)
Does anyone has similar experience ?

Does anyone know know to import that XML file into a table in DB2 ?
If you move to DB2 9 (or above), you'll find the XML support introduced
in that version includes the ability to import from any XML structure
into multiple target tables (although I think there's some restrictions
on recursive structures) - provided you can describe the structure in
an XML schema [1], and/or with XPath expressions [2]. Alternatively,
you could just dump the whole XML file into an XML column - although
personally I only consider those useful for storing mixed-type docs
(i.e. HTML and other stuff that doesn't "shred" well). Still, you won't
find any options for importing "tabular" XML files directly via IMPORT
or LOAD (as mentioned above, given the plethora of styles one could use
you'd still have to describe the structure of the XML at which point
you may as well use the parsing support to shred the document into
tables).

However, if you want to stick with DB2 8, I'd suggest you forget about
using XML. Just export the data to a CSV file and use that. If you're
wondering how you can handle textual data containing line breaks with
CSV, have a look at the "delprioritychar" modifier for LOAD [3] (or
IMPORT) which will allow you to include line breaks within quoted
values.

Another option, if you're feeling /really/ bored is to get your
application to write out IXFs directly - the structure is described
reasonably well [4] in the InfoCenter :-)
[1]
http://publib.boulder.ibm.com/infoce.../com.ibm.db2.l
uw.xml.doc/doc/c0022319.html

[2]
http://publib.boulder.ibm.com/infoce.../com.ibm.db2.l
uw.sql.ref.doc/doc/r0002169.html (see Example 5 at the bottom)

[3]
http://publib.boulder.ibm.com/infoce.../com.ibm.db2.l
uw.admin.cmd.doc/doc/r0008305.html#r0008305__d1e2531 (find
delprioritychar in the "modifiers for DEL" table)

[4]
http://publib.boulder.ibm.com/infoce.../com.ibm.db2.l
uw.admin.dm.doc/doc/r0004667.html
Cheers,

Dave.
Jun 27 '08 #4
Hi all,

Thanks for your invaluable inputs.

I finally find a solution : using SAS programming language.

Inside SAS, I can declare the XML file as a XML library.

This XML library is expecting the XML structure which is
exactly the same as my file's m x n cells table-like structure.

Therefore, SAS can automatically convert the XML table-like structure
into a SAS table.

Then, I can even do some transformation or data clean up
before inserting into DB2.

I am now focusing on inserting rows into DB2 thru SAS.
There is some SAS-DB2 setup problem in my AIX.

Anyways, I will fix it.

Once again, thanks everybody for your help.
Bye.
Alvin SIU
Jun 27 '08 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Eric Caron | last post by:
Hi I try to import file in a dataset. How I can do this ?
5
by: MF | last post by:
Newby question but can't find it myself. How can I get a file-description from a file / table ? eg. the decription must deliver the following info: Record nr. Field nr. Fieldname Field...
0
by: yuppiest | last post by:
Dear All, I'm trying to import a quite large text file (25mb) I had this working fine by using the transfertext command and having a schema.ini file, however having changed the username and...
2
by: Mike C# | last post by:
Hi all, Can someone point me in the direction of a how-to for reading the Import Address Table for an .exe or .dll file? I'm trying to programmatically determine DLL dependencies (like...
11
by: kaisersose1995 | last post by:
Hi, I've got an import procedure working, using a standard import specification to import a .csv file into a temporary table. The problem i'm having is that i have 4 different sets of borrower...
0
by: oiref | last post by:
Why wont access 2003 generate an import errors table to show rejected data.It shows the normal dialog box and then tells me about the data it wont append to the table but thatis it! thanx anyone
2
by: adil6535 | last post by:
hi, I have one question about database 10g how i can export or import one table from one user to other user please help me thanks
1
by: duynv | last post by:
hello everybody! i want to import a table .dbf(visual foxpro) into microsoft access but i can't. Please help me about this problem. Thanks
2
by: annamalainagarajan | last post by:
hi genius, i am using a ms-access database as a back-end and front-end as a vb6. now i want use as a ms-access as multiuser database, so i create the client database as linked tables of server...
1
by: bbatson | last post by:
Hello, Does anyone know how to prevent the creation of an import errors table when importing data from an external source such as Microsoft Excel? Thanks!
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.