Sometimes you may see that list of accounts created over time is getting long, and you may need to have ir reported, exported or printed.
I was missing such report, so I have created this simple one:
You can easily create your new SQL Report with user Name, Email and Last Login Time:
Here is the query to make it:
SELECT TOP 1000 [_id]
,[DisplayName]
,[Email]
,[LastLoginTime]
FROM [Symantec_CMDB].[dbo].[Inv_Account_Details]
That's all, good luck :-)