Is there a way to kill an individual report in SSRS 2005? Possibly using DMV's to determine the SPID? I can determine the user and report using the code below but can't find a way to kill a single report unless I restart IIS. If not, is there a way to limit the number of pages that can be exported? Some users are exporting 1000's of pages and crippling SSRS.SELECT *FROM ReportServer.dbo.RunningJobs a INNER JOIN ReportServer.dbo.Users b ON (a.UserID = b.UserID)ORDER BY StartDateThanks.
↧