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.
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:SELECTex.UserName, ex.Format, ex.TimeStart, cat.Name, ex.Parameters, CONVERT(nvarchar(10), ex.TimeStart, 101) AS rundateFROM ExecutionLog AS ex INNER JOINCatalog AS cat ON ex.ReportID = cat.ItemIDORDER BY ex.TimeStart DESC on ReportServer database |
 |
|
|
|
|