Link to home
Start Free TrialLog in
Avatar of gvamsimba
gvamsimbaFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Pulling an extract from SSRS Report Manager

Hi,we are migrating our SSRS reports to a new server. Hence I want to prepare a document with the
below information from the report manager. can anyone please guide me the best and easitest way to do this ?
is there any SQL script to do this ?

Project Folder
Report Name
RDL Source file


Many Thanks
Avatar of Ryan McCauley
Ryan McCauley
Flag of United States of America image

You can get a basic listing from the server by viewing the [dbo].[Catalog] table in the ReportServer database:

SELECT Path, Name
FROM dbo.Catalog
WHERE Type = 2

Open in new window


For what you've specifically listed, it looks like you'd be interested in those two columns, though there are plenty more you could check out too. The server doesn't appear to keep the source RDL file, though by default it's just the name of the report with a .RDL added to the end of it (unless it's been renamed once it was deployed).
Avatar of gvamsimba

ASKER

Thanks Ryan, but I would I get information related to the subscriptions mainly to see if its  daily , monthly or weekly schedule ?

Many Thanks
ASKER CERTIFIED SOLUTION
Avatar of Ryan McCauley
Ryan McCauley
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Brilliant Ryan... Thank you so much