将父子XML数据插入SQL Server 2008

时间:2009-08-15 02:18:30

标签: xml sql-server-2008

我有一个xml文档作为字符串。我需要将数据插入SQL Server 2008中的Master和Detail表。

我尝试过OpenXML,我想在VB.net中使用其他方法。我正在使用.net 3.5

<Orders>
    <Product>
      <productID>1</productID>
      <productName>Pens</productName>
      <ProductDetails>     
         <productID>1</productID>
         <cost>100</cost> 
      </ProductDetails>
     </Product>

     <Product>
      <productID>2</productID>
      <productName>Books</productName>
      <ProductDetails>     
         <productID>2</productID>
         <cost>1000</cost> 
      </ProductDetails>
     </Product>
</Orders>

1 个答案:

答案 0 :(得分:0)

请参阅“Designing and Implementing Semistructured Storage”,然后在Books Online开始搜索基本的SQL Server信息。