ApplicationDatabaseFileGroup Constructor (ApplicationDatabaseOptions, String)
Initializes a new instance of the ApplicationDatabaseFileGroup class with the parent ApplicationDatabaseOptions object and a name.
네임스페이스: Microsoft.SqlServer.Management.Nmo
어셈블리: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
구문
‘선언
Public Sub New ( _
applicationDatabaseOptions As ApplicationDatabaseOptions, _
name As String _
)
public ApplicationDatabaseFileGroup (
ApplicationDatabaseOptions applicationDatabaseOptions,
string name
)
public:
ApplicationDatabaseFileGroup (
ApplicationDatabaseOptions^ applicationDatabaseOptions,
String^ name
)
public ApplicationDatabaseFileGroup (
ApplicationDatabaseOptions applicationDatabaseOptions,
String name
)
public function ApplicationDatabaseFileGroup (
applicationDatabaseOptions : ApplicationDatabaseOptions,
name : String
)
매개 변수
- applicationDatabaseOptions
The parent ApplicationDatabaseOptions for the filegroup. This parameter sets the Parent property.
name
A String, between 1 and 128 characters in length, that specifies the name of the filegroup.You cannot change the name. To alter an application database after creating the application, use the SQL Server tools, such as SQL Server Management Studio.
주의
At least one filegroup must use the name PRIMARY.
If you need to alter the database after creating the application, use the SQL Server tools, such as SQL Server Management Studio.
예
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)
플랫폼
개발 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
대상 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
ApplicationDatabaseFileGroup Class
ApplicationDatabaseFileGroup Members
Microsoft.SqlServer.Management.Nmo Namespace
관련 자료
응용 프로그램 데이터베이스 정의
NamedFileGroup Element (ADF)
FileGroupName Element (ADF)
CREATE DATABASE(Transact-SQL)