Remarque
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Initializes a new instance of the ApplicationDatabaseFileGroup class with the parent ApplicationDatabaseOptions object and a name.
Espace de noms: Microsoft.SqlServer.Management.Nmo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntaxe
'Déclaration
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
)
Paramètres
- 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.
Notes
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.
Exemple
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)
Plateformes
Plateformes de développement
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Plateformes cibles
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Voir aussi
Référence
ApplicationDatabaseFileGroup Class
ApplicationDatabaseFileGroup Members
Microsoft.SqlServer.Management.Nmo Namespace
Autres ressources
Définition de la base de données d'application
NamedFileGroup Element (ADF)
FileGroupName Element (ADF)
CREATE DATABASE (Transact-SQL)