Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SSRS 2008 Linked Reports Identified From Original Report

Status
Not open for further replies.

Skittle

ISP
Sep 10, 2002
1,528
US
Is there away to look at a report definition in Report manager and list the linked reports that are based on it?

Seems easy to delete an original report thinking it is not used only to find out later that a linked report somewhere else
in the Report Manager structure needs relies on it when a user runs it.

Dazed and confused.

Remember.. 'Depression is just anger without enthusiasum'.
 
Update.

Only way I have found to do this is via interrogating the Catolog table in SSMS.

Code:
SELECT *
FROM reportserver.dbo.catalog
where LinkSourceID = 
(SELECT ItemID
FROM reportserver.dbo.catalog
where Name = '[I][b]OriginalReportName[/I][/b]')

Dazed and confused.

Remember.. 'Depression is just anger without enthusiasum'.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top