如何将从数据库服务器提取的 XML 数据显示到 SSRS
我正在 Reporting Services 中编写一个简单的报告,显示从单个表中提取的数据。表列之一包含 XML 数据,我想将其作为参数传递给子报表。该子报告应以正常表格格式呈现值。
I am writing a simple report in Reporting Services that displays data extracted from a single table. One of the table columns contains XML data, which I want to pass to the sub-report as a parameter. This sub report should render the values in normal tabular format.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会在 SQL 端执行此操作。您可以用 SQL 做的事情越多越好。获取 XML 并将其解析为您想要的任何格式,然后在 SSRS 中使用会更容易
I would do this on the SQL side. The more you can do in SQL the better. Take the XML and parse it into whatever format you would like, then it will be much easier to work with in SSRS