Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Find out last time a user logged in 1

Status
Not open for further replies.

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?
 
On your report server database:
Code:
SELECT * FROM ExecutionLog2
WHERE UserName = 'Some Name'
ORDER BY TimeStart DESC
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top