如何将 XML 文件转换为数据库?
我最近下载了 SO 数据转储,并想知道如何将其从 XML 转换为可以在 .NET 应用程序中使用的数据库。
I recently downloaded the SO Data Dump and was wondering how I could convert it from XML to a DB that I could use in my .NET applications.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是一篇 wiki 文章,描述了使用存储过程将 XML 数据转储转换为数据库。
SQLServerPedia 站点 包含许多与 SO 相关的其他文章 -
Here's a wiki article describing the process of converting the XML data dump to a database by using stored procedures.
SQLServerPedia site contains many other articles related to SO -
您可以尝试XML 批量加载。
You could try XML Bulk Load.
您可以使用 DataSet.ReadXml 方法 将其转换为 DataSet 并将数据表插入数据库
you can convert it to DataSet using DataSet.ReadXml Method and that insert datatables to database
C# 本身就可以很好地处理 XML。 除非有大量 XML,否则只需使用 LINQ to XML 。
如果您有大量 XML,那么以流模式处理它可能比将其放入数据库中的工作量要少
C# handles XML natively very well. Unless there is a large amount of XML, simply use LINQ to XML.
If you have large amounts of XML, then handling it in streaming mode is proably less work than putting it in a DB
嗯,只需使用 XML 解析器,并按照您的意愿创建数据库模式...您也可以直接将 xml 映射到数据库...
http://en.wikipedia.org/wiki/XML_database
多读点书……真的……
Hm, just use a XML parser, and make the database schema as you wish...you can also map the xml to a database directly...
http://en.wikipedia.org/wiki/XML_database
Do some more reading...really..