XML file data to perminent table in database
<students>
<student1>
<name>x</name>
<address>hyd</address>
</student1>
<student1>
<name>y</name>
<address>hyd1</address>
</student1>
<students>
i want to store the above xml data in backend(sqlserver2008) by automatically create new table
like table as folllows
name address
x hyd
y hyd1
plz help me.