Feb 11, 2011 #1 French79 Programmer Dec 31, 2010 12 US Is there a way of finding out when a user last logged into the ReportServer to run a report?
Feb 11, 2011 1 #2 RiverGuy Programmer Jul 18, 2002 5,011 US On your report server database: Code: SELECT * FROM ExecutionLog2 WHERE UserName = 'Some Name' ORDER BY TimeStart DESC Upvote 0 Downvote
On your report server database: Code: SELECT * FROM ExecutionLog2 WHERE UserName = 'Some Name' ORDER BY TimeStart DESC