Share via


EventClass.FileGroup Property

Gets or sets the application database filegroup for the event class database objects.

Espace de noms: Microsoft.SqlServer.Management.Nmo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntaxe

'Déclaration
Public Property FileGroup As String
public string FileGroup { get; set; }
public:
property String^ FileGroup {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_FileGroup ()

/** @property */
public void set_FileGroup (String value)
public function get FileGroup () : String

public function set FileGroup (value : String)

Valeur de propriété

A String of up to 128 characters that specifies the name of an application database filegroup.

Notes

The default filegroup is PRIMARY.

If you specify a value other than PRIMARY, the filegroup must match one of the application database filegroups.

If you change the event class filegroup, updating the application deletes and re-creates the event class to which it corresponds. This includes dropping and re-creating the database tables and indexes used by the event class. Any data existing in the original tables is permanently deleted.

Exemple

The following examples show how to set the default filegroup for an event class:

flightEvents.FileGroup = "PRIMARY";
flightEvents.FileGroup = "PRIMARY"

Sécurité des threads

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.

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

EventClass Class
EventClass Members
Microsoft.SqlServer.Management.Nmo Namespace

Autres ressources

Définition des classe d'événements
FileGroup Element for EventClass (ADF)