Forum Discussion
PBI Report Server Schedule refresh
- 5 months ago
Hi MM_955,
In Power BI Report Server, the ExecutionLog3 view in the ReportServer database can indicate when a refresh request begins, such as when RequestType is set to 'Refresh Cache', but it does not always clearly show when the refresh completes successfully. This can make it challenging to use execution logs alone to identify the last successful refresh. An easier method is to include a simple query in the dataset like select getdate() AS LastRefreshTime, which records the current timestamp during the refresh. This value can then be shown in the report so users know when the data was last refreshed successfully..
Thank you.
Hi MM_955,
Thank you tayloramy, for your insights,
In Power BI Report Server, when a scheduled refresh plan runs, it creates entries in the ExecutionLog3 view of the ReportServer database. As noted in Microsoft documentation, a RequestType of Refresh Cache shows that a scheduled refresh plan was executed. The refresh process may also record ItemAction values like DataRefresh and SaveToCatalog, which indicate data refreshes and saving the updated model to the catalog. These log entries can be used to track refresh activity and execution times.
Troubleshoot scheduled refresh in Power BI Report Server - Power BI | Microsoft Learn
Power BI report scheduled refresh in Power BI Report Server - Power BI | Microsoft Learn
Thank you