共用方式為


NamedFileGroup Element (ADF)

Contains elements that describe a named filegroup and its database files.

語法

<Database>
    <NamedFileGroup>

Element Characteristics

Characteristic Description

Data type

None.

Default value

None.

Occurrence

Optional one or more times per Database element.

Updates

Cannot be added or deleted.

Element Relationships

Relationship Elements

Parent element

Database Element (ADF)

Child elements

FileGroupName Element (ADF)

FileSpec Element (ADF)

備註

The NamedFileGroup element contains the definition of one filegroup. Every database has a PRIMARY filegroup, and if you define application database properties, you must have a PRIMARY filegroup. 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.

範例

The following example shows how to create two filegroups, one named Primary and one named Secondary. The Primary filegroup has one data file and the Secondary filegroup has with two data files.

<NamedFileGroup>
<FileGroupName>Primary</FileGroupName>
<FileSpec>
    <LogicalName>StockPrimary</LogicalName>
    <FileName>C:\SQLData\StockPrimary.mdf</FileName>
    <Size>2GB</Size>
    <MaxSize>5GB</MaxSize>
    <GrowthIncrement>500MB</GrowthIncrement>
</FileSpec>
</NamedFileGroup>
<NamedFileGroup>
    <FileGroupName>Secondary</FileGroupName>
    <FileSpec>
        <LogicalName>StockSecondary1</LogicalName>
        <FileName>D:\Data\StockSecondary1.ndf</FileName>
        <Size>1000MB</Size>
        <MaxSize>5000MB</MaxSize>
        <GrowthIncrement>25%</GrowthIncrement>
    </FileSpec>
    <FileSpec>
        <LogicalName>StockSecondary2</LogicalName>
        <FileName>D:\Data\StockSecondary2.ndf</FileName>
    </FileSpec>
</NamedFileGroup>

請參閱

參考

Application Definition File Reference

其他資源

CREATE DATABASE (Transact-SQL)
定義應用程式資料庫
更新執行個體及應用程式

說明及資訊

取得 SQL Server 2005 協助