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
 Development Tools
 Reporting Services Development
 Who's running reports in SSRS 2005

Author  Topic 

bubberz
Constraint Violating Yak Guru

289 Posts

Posted - 2008-11-06 : 15:21:44
We are trying to see if it's possible to see which users are running what reports.

When users hit a report, they have to enter their WIN credentials.

We do have the default switch is 3:

<!-- 1 = error, 2 = warning, 3 = info, 4 = verbose -->

<add name="DefaultTraceSwitch" value="3" />

...so we're getting the full log, and I see what reports are getting run, but wanted to see if there's a way to see who's running them.

Thanks!

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-11-06 : 15:24:21
I use this one in Report Server Database

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

Go to Top of Page

bubberz
Constraint Violating Yak Guru

289 Posts

Posted - 2008-11-07 : 08:16:49
Yup...thanks!

http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=4095629&SiteID=1
Go to Top of Page
   

- Advertisement -