DirectQueryセマンティックモデルを含むFabricワークスペースがあります。このモデルは、5億行のデータソースに対してクエリを実行します。 このモデルを使用する Report1 という Microsoft Power BI レポートがあります。Report! には複数ページのビジュアルが含まれています。 すべてのページのビジュアルのクエリ実行時間を短縮する必要があります。 使用できる 2 つの機能は何ですか? それぞれの正解は完全なソリューションを示します。 注意: 正解ごとに 1 ポイントが付与されます。
正解:C,D
User-defined aggregations (A) and query caching (C) are two features that can help reduce query execution time. User-defined aggregations allow precalculation of large datasets, and query caching stores the results of queries temporarily to speed up future queries. References = Microsoft Power BI documentation on performance optimization offers in-depth knowledge on these features.