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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Extract Upload information from on-premises PBI Report Server

Is there a way to find out when a user uploads a report to an on-premises PBI Report Server?

 

Thank you,

 

Sara

2 REPLIES 2
saykasku
Resolver I
Resolver I

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.UserID

When 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. 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Kudoed Authors