已发布的 RDL 文件位于何处?

发布于 2024-07-21 18:15:24 字数 117 浏览 10 评论 0原文

发布报告服务报告时。 实际的 .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 技术交流群。

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

发布评论

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

评论(4

饮湿 2024-07-28 18:15:25

它不是服务器上的文件。 它以 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

诠释孤独 2024-07-28 18:15:25

本页展示如何使用 T-SQL

http: //mscrmuk.blogspot.com/2009/05/reading-rdl-definitions-directly-from.html

Jeff

更新:这是相关查询,以防博客文章消失在未来:

select convert(varchar(max), convert(varbinary(max), content))
from catalog
where content is not null

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:

select convert(varchar(max), convert(varbinary(max), content))
from catalog
where content is not null
木緿 2024-07-28 18:15:25

以下查询专门提供了报告的 blob

 SELECT Name, convert (varchar(max), convert (varbinary(max),[Content])) AS ReportRDL
 FROM [dbo].[Catalog] where TYPE =2

Following query specifically provide the report's blob

 SELECT Name, convert (varchar(max), convert (varbinary(max),[Content])) AS ReportRDL
 FROM [dbo].[Catalog] where TYPE =2
む无字情书 2024-07-28 18:15:25

实现此目的的一种方法是在报表生成器中打开报表。 然后点击文件-> 另存为,然后将其保存到所需位置。

另一种方式是,当您在 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.

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