SSIS 批量 XML 导入

发布于 2024-11-17 16:29:45 字数 458 浏览 1 评论 0原文

我想我可能对我的 sql 技能有点不知所措。我有一个几乎 3GB 大的 xml 文件。我需要一个过程来导入这些数据并将其插入表中。当我尝试使用 SSIS xml 源时,它抱怨 XSD 具有多种数据类型,很复杂。然后我尝试使用 XLST 将 xml 转换为 csv。

我在下面有一个指向我的 Skydrive 的链接,其中有 XSD,因为我无法在这里上传文档。我正在寻找有关如何将此数据导入 sql 的指导和建议。任何帮助表示赞赏。

https://skydrive.live.com/?cid=d75b2e7f757393ef&sc=documents&id=D75B2E7F757393EF%21286

I think I may be a bit over my head on this one for what my sql skills are. I have an xml file that is almost 3GB large. I need a process to import this data and insert it into tables. When I try to use SSIS xml source it complains about the XSD being complex with multiple data types. I then tried to convert the xml to csv using XLST.

I have a link to my skydrive below where I have teh XSD since I could not upload documents here. I am looking for guidance and advice on how to get this data into sql. Any help is appreciated.

https://skydrive.live.com/?cid=d75b2e7f757393ef&sc=documents&id=D75B2E7F757393EF%21286

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

半枫 2024-11-24 16:29:45

SSIS 中内置的 XML 组件相对有限。对于更大、更复杂的 XML 源,您可以考虑在脚本任务中提取文件并使用 C# 进行分解

The built in XML components in SSIS are relatively limited. For a larger, more complex XML source you might consider pulling the file in a script task and shredding using C#

赠我空喜 2024-11-24 16:29:45

您可以使用 DataStreams 和 SqlBulkCopy 批量插入任何大小的 XML 文件。

You can bulk insert any size XML file using DataStreams and SqlBulkCopy.

凤舞天涯 2024-11-24 16:29:45

在您的架构中,是否有任何定义了 mixed="true" 的复杂类型? SSIS 不支持这一点。您需要更改复杂类型的内容模型以防止混合,或者使用 XSLT 预处理文档。

在投入时间进行预处理之前,尝试通过删除 mix="true" 来运行 XSLT 进行测试。

In your schema, do you have any complex types that have mixed="true" defined? SSIS does not support this. You would need to change your content model on complex types to not be mixed, or preprocess the documents with an XSLT.

Try running the XSLT by removing mixed="true" for testing before you invest time in pre-processing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文