Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Analysis Server and Reporting Services (2005)
 How to know which reports are being run

Author  Topic 

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-02-20 : 11:36:21
How to know which reports are being run/accessed ? Do i have to query some tables for that.

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-02-20 : 15:01:36
Got the answer:
We have to run this query:

SELECT
ex.UserName, ex.Format, ex.TimeStart, cat.Name, ex.Parameters, CONVERT(nvarchar(10), ex.TimeStart, 101) AS rundate
FROM ExecutionLog AS ex INNER JOIN
Catalog AS cat ON ex.ReportID = cat.ItemID
ORDER BY ex.TimeStart DESC

on ReportServer database

Go to Top of Page
   

- Advertisement -