发布reporting services报表时。实际的.RDL文件位于服务器的什么位置?
我可以通过浏览报表管理器来重新下载.RDL文件吗?但是这个文件在reporting services服务器上的什么位置呢?
谢谢
发布于 2009-05-27 07:17:14
发布于 2010-01-15 07:27:01
本页显示了如何使用T-SQL检索此信息
http://mscrmuk.blogspot.com/2009/05/reading-rdl-definitions-directly-from.html
杰夫
更新:以下是相关查询,以防该博客帖子在未来消失:
select convert(varchar(max), convert(varbinary(max), content))
from catalog
where content is not null发布于 2014-07-22 21:10:07
下面的查询专门提供了报表的blob
SELECT Name, convert (varchar(max), convert (varbinary(max),[Content])) AS ReportRDL
FROM [dbo].[Catalog] where TYPE =2https://stackoverflow.com/questions/914370
复制相似问题