如何在 SSRS / VS 2008 中查询 XML 数据?

发布于 2024-11-28 14:53:02 字数 260 浏览 1 评论 0原文

我有一个报告查询,使用大量的WITH XMLNAMESPACES来查询SQL Server 2008中的一些XML数据。由于xml查询,我似乎无法使用此查询在VS 2008中创建报告。如果我正在阅读 MS 的白皮书正确的是,您必须取出 XML,然后对其进行单独的查询吗?大家有这方面的经验吗,或者有更好的方法吗?

I have a report query using a lot of WITH XMLNAMESPACES to query some XML data in SQL Server 2008. It doesn't look like i can create a report in VS 2008 using this query because of the xml querying. If I'm reading MS's whitepaper correctly, you have to pull the XML out and then do a separate query against it? Anyone have any experience with this, or is there a better way?

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

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

发布评论

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

评论(1

素食主义者 2024-12-05 14:53:02

这是一个误解错误的问题。我的查询中的真正问题不是使用WITH XMLNAMESPACES,而是在我的XSL 的WHERE 中使用“sql:variable("@varName")。解决这个问题的简单方法是在查询并将其设置为传入的参数之后,它就像冠军一样工作。

And this is an issue of misinterpreting errors. The real issue in my query wasn't the use of WITH XMLNAMESPACES, but the use of "sql:variable("@varName") in the WHERE of my XSL. Easy way to solve that is to add a DECLARE @varName in the query and set it to the passed in parameter. After that, it worked like a champ.

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