I have a xml file and I want to store it contents in DB.How The format of my xml is not fixed 100% I have xml file as shown below
<Jb>
<T1>false</T1>
<T2>
<email>[email protected]</email>
<userName>passwd</clusterName>
<passwd>adobe</clusterURL>
<url>dummy</url>
<param1>val </paramY>
<paramN> val </paramN>
</t2>
<fx>
<a >351108</a>
<b >4629 <b>
</fx >
</Jb>
I can have N params eg param1,param2 etc (N not fixed)How can i map it to a relatioanl table structure? Any other approach?