Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Using USERNAME() up to SQL Server
Message
De
11/08/2021 13:35:42
 
 
À
11/08/2021 13:32:45
Information générale
Forum:
Microsoft Power BI
Catégorie:
Autre
Divers
Thread ID:
01682046
Message ID:
01682056
Vues:
62
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform