I have huge data billions of records in tables what is the best way to read it in plain Java and write it in XML file?
Thanks
|
|
If by best you mean fastest - I would consider using native database tools to dump the files as this will be way faster than using JDBC. |
|||
|
|
|
Java (+Hibernate?) will slow the process down unnecessarily. Easier to do sqlplus script and spool formatted fields into your xml file. |
|||
|
|
|
On Toad you can right click a table and click export to xml. on the commercial version I think you can export all tables but I'm not sure |
|||
|
|
|
Another possibility (working with all db with a JDBC driver) would be to use Apache Cocoon. There are actually two ways: XSP ((alone or and with ESQL). Both technos are really quick to develop. XSP alone example. Think of XSP as a little bit like JSP but generating XML instead of HTML. From a DB for instance.
XSP is even more straightforward coupled with ESQL. Here is sample
|
|||
|
|
|
I'll be using database inbuild procedure (e.g. XML path) to get data already converted in xml format. Now there are 2 ways to write in the file: Update to comment: Workflow for fastest retrieval:
I have not used Oracle for a very long time but I hope this link can help you to kickstart. |
|||||||||
|
|
If the DB is Oracle, then you can simply use JDBC with a SQLX query. This will generate your result set directly as XML fragments on the server much faster than if you'd do it on your own on the client side. SQLX has been available since 8.1.7 as project Aurora and since 9i in standard as XMLDB. Here is a simple example.
In addition to XMLelement, SQLX has XMLattribute, XMLforest, XMLaggregate... which allows you any resulting tree. |
||||
|
|
|
You can query to the database and retrieve all data into a RESULTSET and use the following code to start off a root element.
Thereafter you can add on as many as child elements using
Do not forget to close the opened node close the root at the end WITHOUT FAIL Use this to close root.
At the end if you have a XSD validate it your xml against it.....googling the validation online will provide good results.... http://tools.decisionsoft.com/schemaValidate/ NOTE : TIME !!! It will take time when data is huge nos... But I think this is one and the most easiest way of doing it....Taking in consideration the data, I think one should run the program during down time when there is less traffic.... Hope this helps....Good Luck Gauls.... |
|||||||
|
|
Thanks all for replying , so far i have managed to get a solution based on using threads and use multiple selects instead of one single complex sql joins (i hate SQL complex ones) life should be simple :) so i didn't waste too much time writing them i am using new threads for each select statements. any better solution in POJO probabaly using spring is also fine Thanks gauls |
|||
|