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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 4 | |
| 3 |