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.
Represents a collection of ServerDdlTrigger objects. Each ServerDdlTrigger object represents a server data definition language (DDL) trigger that is defined on the instance of SQL Server.
Espace de noms: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntaxe
'Déclaration
Public ReadOnly Property Triggers As ServerDdlTriggerCollection
public ServerDdlTriggerCollection Triggers { get; }
public:
property ServerDdlTriggerCollection^ Triggers {
ServerDdlTriggerCollection^ get ();
}
/** @property */
public ServerDdlTriggerCollection get_Triggers ()
public function get Triggers () : ServerDdlTriggerCollection
Valeur de propriété
A ServerDdlTriggerCollection object that represents all the server DDL (data definition language) triggers that are defined on the instance of SQL Server.
Notes
Texte mis à jour :
Server DDL triggers are procedures that run in response to data definition events at the server level. For example, you can create a server DDL trigger that runs when any database is dropped.
Cet espace de noms, cette classe ou ce membre est pris en charge uniquement par la version 2.0 de Microsoft .NET Framework.
Exemple
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Display the server DDL triggers.
Dim tr As ServerDdlTrigger
For Each tr In srv.Triggers
Console.WriteLine(tr.Name)
Next
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
Server Class
Server Members
Microsoft.SqlServer.Management.Smo Namespace
Autres ressources
How to: Reference an Object by Using a Collection in Visual Basic .NET
Using Collections
Setting Properties
Gestion des serveurs