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 |
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 DatabaseSELECT ex.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 |
|
|
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 |
|
|
|
|
|