Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
pborah
Continued Contributor
Continued Contributor

How can I get a csv list of all users who access various reports on Power BI Report Server?

How can I export a list of all users and (Active Directory) groups that have various levels of access to all the different reports and folders in my organization's Power BI Report Server? I have access to the backend SQL server db as well for this. Thank you.

1 ACCEPTED SOLUTION
pborah
Continued Contributor
Continued Contributor

USE ReportServer
GO
select top 100 percent u.UserName, r.RoleName, r.Description, c.Path, c.Name 
from dbo.PolicyUserRole pur
   inner join dbo.Users u on pur.UserID = u.UserID
   inner join dbo.Roles r on pur.RoleID = r.RoleID
   inner join dbo.Catalog c on pur.PolicyID = c.PolicyID
order by u.UserName

View solution in original post

2 REPLIES 2
pborah
Continued Contributor
Continued Contributor

USE ReportServer
GO
select top 100 percent u.UserName, r.RoleName, r.Description, c.Path, c.Name 
from dbo.PolicyUserRole pur
   inner join dbo.Users u on pur.UserID = u.UserID
   inner join dbo.Roles r on pur.RoleID = r.RoleID
   inner join dbo.Catalog c on pur.PolicyID = c.PolicyID
order by u.UserName
KBO
MVP

Hi @pborah ,

You can look into the Executionlogstorage, catalogue and the user table. You can go on my site and download a basic monitoring report for the report server. In that you can add more fields... yodabi.com after you created the report you can export all informations you need as csv 🙂

 

Best,

Kathrin 

 

 

 

 

If this post has helped you, please give it a thumbs up!
Did I answer your question? Mark my post as a solution!

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.