Compartir a través de


Database.SetDefaultFileGroup Method

Sets the default file group for the database.

Espacio de nombres: Microsoft.SqlServer.Management.Smo
Ensamblado: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Sintaxis

'Declaración
Public Sub SetDefaultFileGroup ( _
    fileGroupName As String _
)
public void SetDefaultFileGroup (
    string fileGroupName
)
public:
void SetDefaultFileGroup (
    String^ fileGroupName
)
public void SetDefaultFileGroup (
    String fileGroupName
)
public function SetDefaultFileGroup (
    fileGroupName : String
)

Parámetros

  • fileGroupName
    A String value that specifies the name of the default file group.

Notas

Texto actualizado:17 de julio de 2006

This method sets the default file group that is used when new database files are created. Existing file groups can be referenced by using the FileGroups property. New file groups can be added by using the FileGroup constructor.

Este espacio de nombres, clase o miembro solamente se admite en la versión 2.0 de Microsoft .NET Framework.

Ejemplo

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")

'Define a FileGroup object called SECONDARY on the database.
Dim fg1 As FileGroup
fg1 = New FileGroup(db, "FILEGROUP2")

'Call the Create method to create the file group on the 
'instance of SQL Server.
fg1.Create()

'Define a DataFile object on the file group and set 
'the FileName property.
Dim df1 As DataFile
df1 = New DataFile(fg1, "newfile")
df1.FileName = _
"c:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\newfile.ndf"

'Call the Create method to create the data file on the 
'instance of SQL Server.
df1.Create()

'Set the new default file group for the database.
db.SetDefaultFileGroup(fg1.Name)

Seguridad para subprocesos

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.

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

Database Class
Database Members
Microsoft.SqlServer.Management.Smo Namespace

Otros recursos

How to: Create, Alter, and Remove a Database in Visual Basic .NET
Creating, Altering, and Removing Databases
CREATE DATABASE (Transact-SQL)
ALTER DATABASE (Transact-SQL)