Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 2.23 KB

partitioning-element-dta.md

File metadata and controls

54 lines (40 loc) · 2.23 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords dev_langs
Partitioning Element (DTA)
In the dta utility, the Partitioning element contains the partitioning scheme that you would like Database Engine Tuning Advisor to use during analysis.
markingmyname
maghan
03/01/2017
sql
tools-other
reference
Partitioning element
XML

Partitioning Element (DTA)

[!INCLUDE SQL Server]

Contains the partitioning scheme that you would like Database Engine Tuning Advisor to use during analysis.

Syntax

  
<DTAInput>  
...code removed...  
    <TuningOptions>  
      <Partitioning>...</Partitioning>  

Element Characteristics

Characteristic Description
Data type and length string, no maximum length.
Allowed values NONE
No partitioning.

FULL
Full partitioning. (Enhances performance.)

ALIGNED
Aligned partitioning only. (Enhances manageability.)

Use only one of these values with this element.

ALIGNED means that in the recommendation generated by Database Engine Tuning Advisor every proposed index is partitioned in exactly the same way as the underlying table for which the index is defined. Nonclustered indexes on an indexed view are aligned with the indexed view.
Default value NONE
Occurrence Required once for the TuningOptions element, unless the DropOnlyMode element is used. If DropOnlyMode is used, you cannot use Partitioning. These elements are mutually exclusive.

Element Relationships

Relationship Elements
Parent element TuningOptions Element (DTA)
Child elements None.

Example

For a usage example of this element, see the Simple XML Input File Sample (DTA).

See Also

XML Input File Reference (Database Engine Tuning Advisor)