Share via


ApplicationDatabaseFileGroup Class

Describes one database filegroup for a Notification ServicesApplication.

命名空间: Microsoft.SqlServer.Management.Nmo
程序集: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

语法

声明
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

备注

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 了解文件和文件组.

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

示例

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)

线程安全

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.

平台

开发平台

有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。

目标平台

有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。

请参阅

参考

ApplicationDatabaseFileGroup Members
Microsoft.SqlServer.Management.Nmo Namespace

其他资源

定义应用程序数据库
NamedFileGroup Element (ADF)
CREATE DATABASE (Transact-SQL)