Index.SortInTempdb Property
Gets or sets the Boolean property value that specifies whether the index is sorted using the tempdb database for intermediate storage of data.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Deklaracja
<SfcPropertyAttribute> _
Public Property SortInTempdb As Boolean
[SfcPropertyAttribute]
public bool SortInTempdb { get; set; }
[SfcPropertyAttribute]
public:
property bool SortInTempdb {
bool get ();
void set (bool value);
}
/** @property */
public boolean get_SortInTempdb ()
/** @property */
public void set_SortInTempdb (boolean value)
public function get SortInTempdb () : boolean
public function set SortInTempdb (value : boolean)
Property Value
A Boolean value that specifies whether the index is sorted using the tempdb database for temporary storage. If True, the index is sorted in the tempdb database. Otherwise, False (default).
Remarks
Uwaga
For indexes based on the UserDefinedTableType object the value of SortInTempdb property is always the default value and the value set by the user is ignored.
Thread Safety
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
See Also