
Inverno asked a question.
Hello. SLM user here.
Some users were creating reports and sharing them with everybody (who knows why).
I just want to know who created the reports to contact them and unshare.
Is there any query that can give me the report name + creator name?
SLM on prem.
Thank you in advance
Good day, @Inverno​
Hope you are doing well.
Give below SQL query a try, hopefully that helps. That will give the Report Name, along with the user who created the report with their First Name, Last Name and Email.
Select a.CID, a.ReportID, a.ReportName, a.Description, b.UserName, b.FirstName, b.LastName, b.Email from SnowLicenseManager.dbo.tblSystemUserReports a
join SnowLicenseManager.dbo.tblsystemuser b on a.UserID = b.UserID
Kind regards,
Randy Teng