已发布的 RDL 文件位于何处?
发布报告服务报告时。 实际的 .RDL 文件位于服务器上的什么位置?
我可以通过浏览报告管理器重新下载 .RDL 文件吗? 但是该文件位于报告服务服务器上的什么位置?
谢谢
When publishing a reporting services report. Where does the actual .RDL file sit on the server?
I can redownload the .RDL file via browsing through the report manager? But where is this file situated on the reporting services server?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
它不是服务器上的文件。 它以 BLOB 形式存储在 ReportServer 数据库中。
(在 SSRS 2005 上准确的目录表中)
扩展答案
It is not a file on the server. It stored as a BLOB in the ReportServer database.
(In the Catalog table to be precise on SSRS 2005)
Extended Answer
本页展示如何使用 T-SQL
http: //mscrmuk.blogspot.com/2009/05/reading-rdl-definitions-directly-from.html
Jeff
更新:这是相关查询,以防博客文章消失在未来:
This page shows how to retrieve this using T-SQL
http://mscrmuk.blogspot.com/2009/05/reading-rdl-definitions-directly-from.html
Jeff
Update: here's the relevant query, in case that blog post disappears in the future:
以下查询专门提供了报告的 blob
Following query specifically provide the report's blob
实现此目的的一种方法是在报表生成器中打开报表。 然后点击文件-> 另存为,然后将其保存到所需位置。
另一种方式是,当您在 Internet Explorer 中打开报告 URL 时,将鼠标悬停在报告上,您将看到一个下拉菜单,并且有一个用于下载报告的选项。
希望这可以帮助。
One way to achieve this is open the report in Report Builder. Then click on file -> save as, then save it in the desired location.
Another way, When you open the report URL in the Internet Explorer,on hovering the report you'll see a drop down and there is an option to download the report.
Hope this helps.