Is there a way to get the list of users who have access to SW orion website and last login in a report? I know you can see who and when they logged in with the admin account but we would like to be able to have a report on this.
Thanks
You could write a custom SQL report based on the Accounts table in the NetPerfMon database. I'm covered up at the moment, but if you need help just post back and I'll throw together a quick SQL query that you should be able to turn into a report.
I believe you could use the following SQL in an advanced SQL report to get what you want.
select AccountID, LastLogin from accounts order by AccountID
Yes, I would need this created for me since I am not a SQL writer or know anything more then what the report writer can do and not able to do the sql queuries on the fly.
Thanks much
Prof,
The SQL query posted earlier can be used in report writer by creating a new report and then selecting Advanced SQL for the report type. Then select the SQL tab and enter the query.
Thanks much that worked great.
adding DESC to the end will sort descending:
select AccountID, LastLogin from accounts order by LastLogin DESC