Hello,
Jordi is right.
I'll try to provide some code to test.
=================
catalog.xml
=================
<catalog>
<book id="bk101">
<
author>Mat Who</author>
<title>XML Developer's Guide</title>
<genre>Computer</genre>
<price>44.95</price>
<publish_date>2000-10-01</publish_date>
<description>An in-depth look at creating applications with XML.</description>
</book>
<book id="bk102">
<
author>Kim Rall</author>
<title>Midnight Rain</title>
<genre>Fantasy</genre>
<price>5.95</price>
<publish_date>2000-12-16</publish_date>
<description> ... become queen of the world.</description>
</book>
</catalog>
=================
catalog.asp
=================
<%
'Load the XML
set oXmlDoc = Server.CreateObject("MSXML2.DOMdocument"

oXmlDoc.async = false
oXmLDoc.load(Server.MapPath("catalog.xml"

)
'Declare lists of authors, titles and years
Dim objAuthorList
Dim objTitleList
Dim objPublishDate
'Set the values from XML file, assumed that each author wrote only one book
'getElementsByTagName returns a collection of elements that have the specified name
Set objAuthorList = oXmlDoc.
getElementsByTagName("
author"

Set objTitleList = oXmlDoc.getElementsByTagName("title"

Set objPublishDate = oXmlDoc.getElementsByTagName("publish_date"
Response.write "<html><head></head><body>" & vbCrlf
'Display some output
'length as usual is the number of elements in a collection
'object.item(i) is a way to access i-th element of a collection
'text is a property of an item; other are nodeName, nodeValue
For i=0 To (objAuthorList.
length -1)
str = objAuthorList.item(i).text & " wrote " & objTitleList.item(i).text & " in year " & Mid(objPublishDate.item(i).text,1,4) & "<br>" & vbCrLf
Response.write str
Next
Response.Write "</body></html>"
%>
From this example you could figure out how to write necessary data to a database.
D.