Remarque
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Adds an ApplicationDatabaseFileGroup to the ApplicationDatabaseFileGroupCollection.
Espace de noms: Microsoft.SqlServer.Management.Nmo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntaxe
'Déclaration
Public Sub Add ( _
applicationDatabaseFileGroups As ApplicationDatabaseFileGroup _
)
public void Add (
ApplicationDatabaseFileGroup applicationDatabaseFileGroups
)
public:
void Add (
ApplicationDatabaseFileGroup^ applicationDatabaseFileGroups
)
public void Add (
ApplicationDatabaseFileGroup applicationDatabaseFileGroups
)
public function Add (
applicationDatabaseFileGroups : ApplicationDatabaseFileGroup
)
Paramètres
- applicationDatabaseFileGroups
The ApplicationDatabaseFileGroup to add to the collection.
Notes
Each ApplicationDatabaseFileGroup must be unique.
Exemple
The following examples show how to add a filegroup for a Notification Services application database:
ApplicationDatabaseFileGroup adb_fg =
new ApplicationDatabaseFileGroup(adb, "PRIMARY");
adb.ApplicationDatabaseFileGroups.Add(adb_fg);
Dim adb_fg As ApplicationDatabaseFileGroup = _
New ApplicationDatabaseFileGroup(adb, "PRIMARY")
adb.ApplicationDatabaseFileGroups.Add(adb_fg)
Sécurité des threads
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.
Plateformes
Plateformes de développement
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Plateformes cibles
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Voir aussi
Référence
ApplicationDatabaseFileGroupCollection Class
ApplicationDatabaseFileGroupCollection Members
Microsoft.SqlServer.Management.Nmo Namespace
Autres ressources
Définition de la base de données d'application
Database Element (ADF)
NamedFileGroup Element (ADF)