Compartir a través de


ApplicationDatabaseFileGroup Class

Describes one database filegroup for a Notification ServicesApplication.

Espacio de nombres: Microsoft.SqlServer.Management.Nmo
Ensamblado: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Sintaxis

'Declaración
Public NotInheritable Class ApplicationDatabaseFileGroup
    Inherits NamedSmoObject
public sealed class ApplicationDatabaseFileGroup : NamedSmoObject
public ref class ApplicationDatabaseFileGroup sealed : public NamedSmoObject
public final class ApplicationDatabaseFileGroup extends NamedSmoObject
public final class ApplicationDatabaseFileGroup extends NamedSmoObject

Notas

Each Notification Services application has one database, which can consist of multiple filegroups. Defining these filegroups is optional.

If you define filegroups, one filegroup must be named PRIMARY. You can have additional filegroups to group additional data files together for administrative, data allocation, and placement purposes. For more information about files and filegroups, see Descripción de archivos y grupos de archivos.

If you want to alter the application database after creating the application, use the Microsoft SQL Server tools, such as SQL Server Management Studio.

Inheritance Hierarchy

System.Object
   Microsoft.SqlServer.Management.Smo.SmoObjectBase
     Microsoft.SqlServer.Management.Smo.SqlSmoObject
       Microsoft.SqlServer.Management.Smo.NamedSmoObject
        Microsoft.SqlServer.Management.Nmo.ApplicationDatabaseFileGroup

Ejemplo

The following examples show how to define 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)

Seguridad para subprocesos

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.

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

ApplicationDatabaseFileGroup Members
Microsoft.SqlServer.Management.Nmo Namespace

Otros recursos

Definir la base de datos de aplicación
NamedFileGroup Element (ADF)
CREATE DATABASE (Transact-SQL)