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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
pborah
Solution Sage
Solution Sage

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
Solution Sage
Solution Sage

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
Solution Sage
Solution Sage

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
Memorable Member
Memorable Member

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.