You have a Power BI dataset connected to an on-premises SQL Server database. You want the data to update automatically every 4 hours. Which setting should you configure in the Power BI service?
Think about how to schedule multiple refreshes within a day.
Power BI allows up to 8 scheduled refreshes per day. To refresh every 4 hours, you set the frequency to daily and specify 4 refresh times spaced 4 hours apart.
You have a DAX measure that calculates total sales for the current month using the formula:Total Sales MTD = CALCULATE(SUM(Sales[Amount]), DATESMTD(Calendar[Date]))
After a scheduled refresh at midnight, what will be the value of Total Sales MTD at 1 AM on the first day of the month?
Consider what data is available immediately after midnight.
At 1 AM on the first day of the month, no sales have occurred yet in the new month, so the measure returns zero. The scheduled refresh updates the data model to the latest data, but no new sales exist yet for the current month.
Your Power BI dataset refresh fails with the error: 'Data source credentials are invalid'. You have recently changed the password for the SQL Server account used in the data source settings. What is the best way to fix this issue?
Think about where Power BI stores credentials for scheduled refresh.
When credentials change, you must update them in the Power BI service under data source settings to allow scheduled refresh to connect successfully.
You want to create a Power BI report page that shows the status of scheduled refreshes for multiple datasets. Which visual and data approach best communicates the refresh success or failure over the past week?
Think about what details help identify issues quickly.
A table with dataset names, last refresh date, status, and duration provides clear, detailed information to monitor refresh health and troubleshoot failures.
Your Power BI report uses a large dataset that takes 3 hours to refresh. You want to minimize downtime and keep data as fresh as possible. Which strategy is best to achieve this?
Think about how to reduce refresh time and resource use.
Incremental refresh updates only new or changed data, reducing refresh time and resource consumption. Scheduling during off-peak hours minimizes impact on users.