Reputation: 3177
I have data in a XML file. The format of the XML file is like this
Code:
<employees>
<employee>
<name>rgoti</name>
<empno>2</empno>
….
….
<employee>
<employee>
<name>sganee</name>
<empno>3</empno>
….
….
<employee>
….
….
</employees>
I want to load this data into the Oracle database using Java.How to design and create table and data types for saving this xml in table?.
Upvotes: 0
Views: 1300
Reputation: 4273
Your question is too generic to gather a good answer. Common steps:
Upvotes: 2