A company uses Power BI to analyze sales data from a SQL Server database. The database contains a table 'Sales' with 10 million rows. The business analysts need to create daily reports that aggregate sales by region and product category. To optimize report performance, which data preparation technique should be applied?
Trap 1: Increase the row limit in Power Query to load all rows.
Loading all rows increases data volume.
Trap 2: Remove unused columns from the query.
Removing unused columns reduces width but not row count.
Trap 3: Import the entire table and aggregate in Power BI.
Importing all rows is inefficient.
- A
Increase the row limit in Power Query to load all rows.
Why wrong: Loading all rows increases data volume.
- B
Remove unused columns from the query.
Why wrong: Removing unused columns reduces width but not row count.
- C
Import the entire table and aggregate in Power BI.
Why wrong: Importing all rows is inefficient.
- D
Perform aggregation in SQL before importing.
Aggregating at source reduces rows significantly.