rdl

Where does a published RDL file sit?

五迷三道 提交于 2019-11-27 11:53:33
问题 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 回答1: 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 回答2: This page shows how to retrieve this using T-SQL http://mscrmuk.blogspot.com/2009/05/reading-rdl

Modified Reporting Services Report - RDL does not change?

有些话、适合烂在心里 提交于 2019-11-26 22:12:03
问题 I have a Reporting Services 2005 report that had an error: "Parameter UserID is read-only". After doing some research, I found a solution that worked. I opened the report from the Report Manager web interface and changed this: ..to this: After this change, the report works! Great! So, I figure I will download the modified RDL so I can see the change and get the corrected RDL into my source code repository. So, I download the RDL: But my diff tools tell me that the "before" version of the RDL

When to use RDLC over RDL reports?

a 夏天 提交于 2019-11-26 06:55:48
问题 I have been studying SSRS 2005 / 2008 in the past weeks and have created some server side reports. For some application, a colleague suggested that I look into RDLC for that particular situation. I am now trying to get my head around the main difference between RDL and RDLC. Searching for this information yields fragmented information at best. I have learned that: RDLC reports do not store information about how to get data. RDLC reports can be executed directly by the ReportViewer control.