如何在 SSRS / VS 2008 中查询 XML 数据?
我有一个报告查询,使用大量的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个误解错误的问题。我的查询中的真正问题不是使用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.