Forum Discussion
Execution metadata from Power BI Report Server
- Anonymous2 years ago
Hi omnia_saleh ,
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Have a look at the PBIRS metadata in the ReportServerPBI database. Starting with this sql:
Select c.Path, c.Name, u.UserName as CreatedBy
from ReportServerPBI.dbo.Catalog c
Left Join ReportServerPBI.dbo.Users u
on c.CreatedByID = u.UserID;There are some views as well in this database and [ReportServerPBI].[dbo].[ExecutionLog3] should give you a lot of information regarding the access.
why table [Event] and [history]in database ReportServer has no data in sql server managemet studio?
- ChrisMuthmann2 years agoResolver II
Same for me and that should be fine.
There is a documentation belonging to the events:
- omnia_saleh2 years agoHelper II
Is it solved?
- josef782 years agoMemorable Member
I think, Event table is not logging table, I have in this table only ReportRefresh events only during queuing (for very short time).
I History table, I have only snapshots for paginated reports.