PartitionScheme Propiedad
Gets or sets the partition scheme that is configured for the table.
Espacio de nombres: Microsoft.SqlServer.Management.Smo
Ensamblado: Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Sintaxis
'Declaración
<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 de la propiedad
Tipo: System. . :: . .String
A PartitionScheme object value that specifies the partition scheme that is configured on the table.
Implementa
Notas
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.
Vea también