Can any one tell me if SQL stores the last logon dat for a user and where. I would like to pull reports re users last logings to the server and then database.
Users last logon
Collapse
X
-
I don't think there is a system table that holds this information.
You can get current login users but not the once who logged off.
Try:
Code:sp_who
Good Luck.
Comment