通过 SQL Server 视图公开基于 Web 的 XML 数据
看起来 SQL Server 有相当多的 XML 支持。我主要看到过有关在 SQL Server 中存储 XML、查询 SQL Server 中存储的 XML 数据以及将数据公开为 XML 的信息。
以下场景是一个选项吗:
我想通过 SQL Server 视图从网站公开 xml 数据(它是工作项的 RSS 视图)。动机是创建新的计算值,然后通过 SSRS 报告显示数据。
我想使用视图,以便数据始终处于活动状态,并避免需要批量 ETL。
这可能吗?语法是什么样的?
It seems that SQL Server has a fair amount of XML support. Mostly I've seen info regarding storing XML in SQL Server, querying XML data stored in SQL Server, and exposing data as XML.
Is the following scenario an option:
I'd like to expose xml data (it's an RSS view of workitems) from a web site via a SQL Server view. The motivation is to create new computed values and then show the data via an SSRS report.
I'd like to use a view so that the data is always live, and avoid the need for a batch ETL.
Is this possible? What does the syntax look like?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个 CLR 过程来提取实时源
Create a CLR proc to pull the live feed
SSMS
SSMS