InstanceDatabaseFileGroup Class
Describes one database filegroup for a Notification ServicesInstance.
네임스페이스: Microsoft.SqlServer.Management.Nmo
어셈블리: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
구문
‘선언
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
주의
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 파일 및 파일 그룹 이해.
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
예
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)
스레드 보안
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 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
InstanceDatabaseFileGroup Members
Microsoft.SqlServer.Management.Nmo Namespace
관련 자료
인스턴스 데이터베이스 정의
NamedFileGroup Element (ICF)
CREATE DATABASE(Transact-SQL)