Skip to main content
Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / David Jennaway / Reading RDL Definitions dir...

Reading RDL Definitions directly from a ReportServer database

David Jennaway Profile Picture David Jennaway 14,065

Just a quick post: I recently had to extract the report definitions (RDL) directly from a ReportServer database, as the ReprtServer installation was broken. This should be straightforward, but requires some work to convert the data to a readable format. This can be done with the following SQL query:

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


This was originally posted here.

Comments

*This post is locked for comments