Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using USERNAME() up to SQL Server
Message
From
11/08/2021 13:35:42
 
 
To
11/08/2021 13:32:45
General information
Forum:
Microsoft Power BI
Category:
Other
Miscellaneous
Thread ID:
01682046
Message ID:
01682056
Views:
61
This message has been marked as the solution to the initial question of the thread.
>>Are you referring to reports that have been deployed to your Power BI report server, or to the cloud?
>
>Power BI Report Server

On the SQL Server database server where PBI is installed, there is a ReportServer database (or similar name, depending on how it was configured). There are execution logs.....and a view called ExecutionLog3 that you can run.

Here's one example of how to use it....you might have to adjust it....but if you go run a few reports and then look at this view, you'll get the idea.

SELECT ItemPath, Username, count(*) , min(timestart), max(timeend)
FROM [ReportServerpbi].[dbo].[ExecutionLog3]
where username not in ( names that you want to exclude ) and requesttype = 'Interactive'
group by itempath , username
order by count(*) desc
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform