Propriedade PartitionScheme
Gets or sets the partition scheme that is configured for the table.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)> _
Public Property PartitionScheme As String
Get
Set
'Uso
Dim instance As Table
Dim value As String
value = instance.PartitionScheme
instance.PartitionScheme = value
[SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)]
public string PartitionScheme { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::ReadOnlyAfterCreation)]
public:
virtual property String^ PartitionScheme {
String^ get () sealed;
void set (String^ value) sealed;
}
[<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)>]
abstract PartitionScheme : string with get, set
[<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)>]
override PartitionScheme : string with get, set
final function get PartitionScheme () : String
final function set PartitionScheme (value : String)
Valor da propriedade
Tipo: System. . :: . .String
A PartitionScheme object value that specifies the partition scheme that is configured on the table.
Implementa
Comentários
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.
Consulte também