|
Hi, Can some one point me to the right direction of finding a script which generates a report which includes all reporting services reports and the permissions they use along with their location on the server. Thanks in advance, S
(comments are locked)
|
|
Report data is stored in the table named dbo.Catalog. Astonishingly, the Contents column which stores the RDL information has image data type (the very data type which Microsoft strongly encourages us to avoid). The workaround is to cast contents as XML friendly varbinary(max) which can then be cast to xml data type. Here is the script which will list all reports and their respective parameters, so if you run it you will get multiple records per report if the latter has multiple parameters:
All tables in the ReportServer database are very straightforward, i.e. dbo.ReportSchedule relates to dbo.Schedule and dbo.Catalog via ScheduleID - > ScheduleID and ReportID -> ItemID respectively. Oleg Nice! I will explore this. I havent yet marked it as the correct answer as of yet.
Jun 09 '10 at 10:56 AM
Slick84
Interesting, the inner sub query works but along with the cross apply i get no results..
Jun 09 '10 at 11:03 AM
Slick84
(comments are locked)
|

