Additional Blogs by Members
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member
0 Kudos

Inserting Multiple Records from XML files into MaxDB Database

In my last weblog I explained a simple technique to Inserting Multiple Records into MaxDB Database into MaxDB database server. I always prefer having a variety of options in most cases. In general the data we receive can be in any format and hence we cannot limit ourselves to specific formats. Some time back I posted a weblog for Creating an Extractor for downloading MaxDB Table Data to XML. I felt it will be good option to insert multiple data from XML files into MaxDB.
This will minimize the problems due to the delimiters and XML being widely accepted format things will be very much easier while extraction and upload. I would recommend all readers to have a look at JAXP if you want to understanding the XML parsing which is the main addition when compared to my Inserting Multiple Records into MaxDB Database weblog. And for the below two forum threads one more solution is here,
How to insert multiple rows
😞 Mass Data Upload to table in MaxDB

Hoping things are much simpler except for the piece java code I will get into the solution straight away.

Table Definition

I considered a simple table for the test which had the below definition.



Table Contents

The number of records it contained was only one.



Records to insert

Now the task is to upload a set of records shown below into the database from XML file.



The JDBC Program

The JDBC program for performing the multiple records insert into MaxDB is given below.



The Result of the Program

The program did work perfectly and the test run results were displayed.



Verification

The data was successfully inserted into MaxDB. The table entries are shown below.



Hope this was useful.

4 Comments