nerdexam
Microsoft

70-465 · Question #16

Drag and Drop Question You have a server named SQL1 that has SQL Server 2012 installed. SQL1 hosts a database named Database1. Database1 contains a table named Table1. Table1 is partitioned across fiv

The correct answer is IX_Type: Aligned; IX_Account: Nonaligned; IX_DATE: Nonaligned; IX_Amount: Nonaligned. IX_Type should be Aligned because it is the clustered index on the partitioned table - aligned indexes share the same partition scheme as the base table, which optimizes partition elimination and improves query performance when filtering by the Date field. The remaining indexes (

Submitted by renata2k· Mar 5, 2026Design and implement database objects - specifically optimizing index storage strategies for partitioned tables in SQL Server to maximize query performance (Microsoft SQL Server 2012 / 70-465 or 70-462 certification domain: Database Design and Optimization)

Question

Drag and Drop Question You have a server named SQL1 that has SQL Server 2012 installed. SQL1 hosts a database named Database1. Database1 contains a table named Table1. Table1 is partitioned across five filegroups based on the Date field. The schema of Table1 is configured as shown in the following table. Table1 contains the indexes shown in the following table. You need to recommend an index strategy to maximize performance for the queries that consume the indexes available to Table1. Which type of index storage should you recommend? To answer, drag the appropriate index storage type to the correct index in the answer area. Answer:

Exhibits

70-465 question #16 exhibit 1
70-465 question #16 exhibit 2
70-465 question #16 exhibit 3

Answer Area

Drag items

AlignedNonaligned

Correct arrangement

  • IX_Type: Aligned
  • IX_Account: Nonaligned
  • IX_DATE: Nonaligned
  • IX_Amount: Nonaligned

Explanation

IX_Type should be Aligned because it is the clustered index on the partitioned table - aligned indexes share the same partition scheme as the base table, which optimizes partition elimination and improves query performance when filtering by the Date field. The remaining indexes (IX_Account, IX_DATE, IX_Amount) should be Nonaligned because they are nonclustered indexes that do not follow the table's partition scheme; nonaligned nonclustered indexes can span all filegroups independently, allowing them to be more efficiently used across the entire table without being bound to the partition boundaries, which maximizes query performance for cross-partition lookups on those columns.

Topics

#SQL Server Partitioning#Index Strategy#Aligned vs Nonaligned Indexes#Database Performance Optimization

Community Discussion

No community discussion yet for this question.

Full 70-465 Practice