SQL Server 2012がインストールされているSQL1という名前のサーバーがあります。 SQL1はDatabase1という名前のデータベースをホストします。
Database1には、Table1という名前のテーブルが含まれています。 Table1は、Dateフィールドに基づいて5つのファイルグループに分割されています。
Table1のスキーマは、次の表に示すように構成されています。

Table1には、次の表に示すインデックスが含まれています。

Table1で使用可能なインデックスを消費するクエリのパフォーマンスを最大化するためのインデックス戦略を推奨する必要があります。
どのタイプの索引ストレージを推奨しますか? 回答するには、適切なインデックスの格納タイプを回答領域の正しいインデックスにドラッグします。

正解:

Explanation

Index Storage Type
Designing a partitioned index independently (unaligned) of the base table can be useful in the following cases:
- The base table has not been partitioned.
- The index key is unique and it does not contain the partitioning column of the table.
- You want the base table to participate in collocated joins with more tables using different join columns.