InstanceDatabaseFileGroup Class
Describes one database filegroup for a Notification ServicesInstance.
Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Declaration
Public NotInheritable Class InstanceDatabaseFileGroup
Inherits NamedSmoObject
public sealed class InstanceDatabaseFileGroup : NamedSmoObject
public ref class InstanceDatabaseFileGroup sealed : public NamedSmoObject
public final class InstanceDatabaseFileGroup extends NamedSmoObject
public final class InstanceDatabaseFileGroup extends NamedSmoObject
Hinweise
Each Notification Services instance 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 Grundlegendes zu Dateien und Dateigruppen.
If you want to alter the instance database after creating the instance, 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.InstanceDatabaseFileGroup
Beispiel
The following examples show how to define a filegroup for an instance database:
InstanceDatabaseFileGroup idb_fg =
new InstanceDatabaseFileGroup(idb, "PRIMARY");
idb.InstanceDatabaseFileGroups.Add(idb_fg);
Dim idb_fg As InstanceDatabaseFileGroup = _
New InstanceDatabaseFileGroup(idb, "PRIMARY")
idb.InstanceDatabaseFileGroups.Add(idb_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
InstanceDatabaseFileGroup Members
Microsoft.SqlServer.Management.Nmo Namespace
Andere Ressourcen
Definieren der Instanzdatenbank
NamedFileGroup Element (ICF)
CREATE DATABASE (Transact-SQL)