Condividi tramite


ApplicationDatabaseOptions.ApplicationDatabaseFileGroups Property

Represents the collection of filegroups for an application.

Spazio dei nomi: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Sintassi

'Dichiarazione
Public ReadOnly Property ApplicationDatabaseFileGroups As ApplicationDatabaseFileGroupCollection
public ApplicationDatabaseFileGroupCollection ApplicationDatabaseFileGroups { get; }
public:
property ApplicationDatabaseFileGroupCollection^ ApplicationDatabaseFileGroups {
    ApplicationDatabaseFileGroupCollection^ get ();
}
/** @property */
public ApplicationDatabaseFileGroupCollection get_ApplicationDatabaseFileGroups ()
public function get ApplicationDatabaseFileGroups () : ApplicationDatabaseFileGroupCollection

Valore proprietà

An ApplicationDatabaseFileGroupCollection. Use this collection to add and remove ApplicationDatabaseFileGroup objects.

Osservazioni

Each ApplicationDatabaseFileGroup must be unique within the application.

Esempio

The following examples show how to define a filegroup for the application database and then add the filegroup using the ApplicationDatabaseFileGroups property:

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)

Thread Safety

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.

Piattaforme

Piattaforme di sviluppo

Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.

Piattaforme di destinazione

Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.

Vedere anche

Riferimento

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