Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Is there a way to find out when a user uploads a report to an on-premises PBI Report Server?
Thank you,
Sara
Hi,
You can try this on ReportServer database.
SELECT c.[Path]
,c.[Name]
,u.[UserName]
,c.[CreationDate]
FROM [ReportServer].[dbo].[Catalog] c
inner join [ReportServer].[dbo].[Users] u
on c.CreatedByID = u.UserIDWhen and who create report.
Or you could do a similar thing using the Powershell module https://github.com/Microsoft/ReportingServicesTools/ (or the web api's). Technically Microsoft does not support directly querying the database. If your queries get more complex they can potentially cause blocking which could interfere with the normal operation of the service.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 7 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 11 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |