Développer Réduire
Ce sujet n'a pas encore été évalué - Évaluez ce sujet

PartitionFunctions propriété

Represents a collection of PartitionFunction objects. Each PartitionFunction object represents a partition function defined on the database.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (dans Microsoft.SqlServer.Smo.dll)
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
	typeof(PartitionFunction))]
public PartitionFunctionCollection PartitionFunctions { get; }

Valeur de la propriété

Type : Microsoft.SqlServer.Management.Smo..::..PartitionFunctionCollection
A PartitionFunctionCollection object that represents all the partition functions defined on the database.

Specific partition function can be referenced by using this collection by specifying the name of the partition function. To add a new partition function to the collection, call the partition function constructor.

Dim srv As Server
srv = New Server

'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")

'Display all the partition functions and schemes on the database.
Dim pf As PartitionFunction
For Each pf In db.PartitionFunctions
   Console.WriteLine(pf.Name)
Next
Dim ps As PartitionScheme
For Each ps In db.PartitionSchemes
   Console.WriteLine(ps.Name)
Next
Cela vous a-t-il été utile ?
(1500 caractères restants)

Ajouts de la communauté

AJOUTER
© 2013 Microsoft. Tous droits réservés.