Freigeben über


ApplicationDatabaseFileGroupCollection.Add Method

Adds an ApplicationDatabaseFileGroup to the ApplicationDatabaseFileGroupCollection.

Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntax

'Declaration
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
)

Parameter

Hinweise

Each ApplicationDatabaseFileGroup must be unique.

Beispiel

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)

Threadsicherheit

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.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

ApplicationDatabaseFileGroupCollection Class
ApplicationDatabaseFileGroupCollection Members
Microsoft.SqlServer.Management.Nmo Namespace

Andere Ressourcen

Definieren der Anwendungsdatenbank
Database Element (ADF)
NamedFileGroup Element (ADF)