Table.PartitionScheme Property
Gets or sets the partition scheme that is configured for the table.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Deklaracja
<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)> _
Public Property PartitionScheme As String
[SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)]
public string PartitionScheme { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::ReadOnlyAfterCreation)]
public:
virtual property String^ PartitionScheme {
String^ get () sealed;
void set (String^ value) sealed;
}
/** @property */
public final String get_PartitionScheme ()
/** @property */
public final void set_PartitionScheme (String value)
public final function get PartitionScheme () : String
public final function set PartitionScheme (value : String)
Property Value
A PartitionScheme object value that specifies the partition scheme that is configured on the table.
Remarks
The property specifies the name of the partition scheme. The PartitionSchemeParameters property lists the file groups that the partition scheme uses to store the table data.
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