Compartir a través de


Clase DatabaseDdlTrigger

The DatabaseDdlTrigger object represents a SQL Server database data definition language (DDL) trigger.

Jerarquía de herencia

System.Object
  Microsoft.SqlServer.Management.Smo.SmoObjectBase
    Microsoft.SqlServer.Management.Smo.SqlSmoObject
      Microsoft.SqlServer.Management.Smo.NamedSmoObject
        Microsoft.SqlServer.Management.Smo.ScriptNameObjectBase
          Microsoft.SqlServer.Management.Smo.DdlTriggerBase
            Microsoft.SqlServer.Management.Smo.DatabaseDdlTrigger

Espacio de nombres:  Microsoft.SqlServer.Management.Smo
Ensamblado:  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Sintaxis

'Declaración
<PhysicalFacetAttribute(PhysicalFacetOptions.ReadOnly)> _
<EvaluationModeAttribute(AutomatedPolicyEvaluationMode.CheckOnSchedule)> _
<SfcElementTypeAttribute("DdlTrigger")> _
Public NotInheritable Class DatabaseDdlTrigger _
    Inherits DdlTriggerBase _
    Implements IExtendedProperties, ISfcSupportsDesignMode
'Uso
Dim instance As DatabaseDdlTrigger
[PhysicalFacetAttribute(PhysicalFacetOptions.ReadOnly)]
[EvaluationModeAttribute(AutomatedPolicyEvaluationMode.CheckOnSchedule)]
[SfcElementTypeAttribute("DdlTrigger")]
public sealed class DatabaseDdlTrigger : DdlTriggerBase, 
    IExtendedProperties, ISfcSupportsDesignMode
[PhysicalFacetAttribute(PhysicalFacetOptions::ReadOnly)]
[EvaluationModeAttribute(AutomatedPolicyEvaluationMode::CheckOnSchedule)]
[SfcElementTypeAttribute(L"DdlTrigger")]
public ref class DatabaseDdlTrigger sealed : public DdlTriggerBase, 
    IExtendedProperties, ISfcSupportsDesignMode
[<SealedAttribute>]
[<PhysicalFacetAttribute(PhysicalFacetOptions.ReadOnly)>]
[<EvaluationModeAttribute(AutomatedPolicyEvaluationMode.CheckOnSchedule)>]
[<SfcElementTypeAttribute("DdlTrigger")>]
type DatabaseDdlTrigger =  
    class 
        inherit DdlTriggerBase 
        interface IExtendedProperties 
        interface ISfcSupportsDesignMode 
    end
public final class DatabaseDdlTrigger extends DdlTriggerBase implements IExtendedProperties, ISfcSupportsDesignMode

El tipo DatabaseDdlTrigger expone los siguientes miembros.

Constructores

  Nombre Descripción
Método público DatabaseDdlTrigger() Initializes a new instance of the DatabaseDdlTrigger class.
Método público DatabaseDdlTrigger(Database, String) Initializes a new instance of the DatabaseDdlTrigger class on the specified database and with the specified name.
Método público DatabaseDdlTrigger(Database, String, DatabaseDdlTriggerEventSet, String) Initializes a new instance of the DatabaseDdlTrigger class on the specified database with the specified name. The trigger responds to the specified event set and runs the specified batch.
Método público DatabaseDdlTrigger(Database, String, DatabaseDdlTriggerEventSet, String, String, String) Initializes a new instance of the DatabaseDdlTrigger class on the specified database with the specified name. The trigger responds to the specified event set and runs the specified batch.

Arriba

Propiedades

  Nombre Descripción
Propiedad pública AnsiNullsStatus Gets or sets the Boolean property value that specifies whether ISO NULL handling is enabled in the data definition language (DDL) trigger.
Propiedad pública AssemblyName Gets or sets the name of the assembly that contains the managed code that is executed when the data definition language (DDL) trigger is raised.
Propiedad pública BodyStartIndex Gets the index value that represents the start of the DDL trigger text body.
Propiedad pública ClassName Gets or sets the name of the class in the assembly that contains the managed code that is executed when the data definition language (DDL) trigger is raised.
Propiedad pública CreateDate Gets the date and time when the database data definition language (DDL) trigger was created.
Propiedad pública DateLastModified Gets the date and time when the database data definition language (DDL) trigger was last modified.
Propiedad pública DdlTriggerEvents Gets or sets the set of data definition language (DDL) events that raise the database DDL trigger.
Propiedad pública ExecutionContext Gets or sets the execution context type that is used by the database DDL trigger, by itself, by the caller, or by a specified login.
Propiedad pública ExecutionContextUser Gets or sets the database user that is the context used when the database DDL trigger executes.
Propiedad pública ExtendedProperties Represents a collection of ExtendedProperty objects. Each ExtendedProperty object represents an extended property for the DatabaseDdlTrigger object.
Propiedad pública ID Gets the ID value that uniquely identifies the database data definition language (DDL) trigger.
Propiedad pública ImplementationType Gets or sets the implementation type for the database data definition language (DDL) trigger.
Propiedad pública IsEnabled Gets or sets the Boolean property value that specifies whether the database data definition language (DDL) trigger is enabled.
Propiedad pública IsEncrypted Gets or sets a Boolean property value that specifies whether the Transact-SQL batch or managed code is encrypted.
Propiedad pública IsSystemObject Gets the Boolean property value that specifies whether the database data definition language (DDL) trigger is a system object.
Propiedad pública MethodName Gets or sets the name of the method that is owned by the class in the assembly, which is executed when the trigger is raised.
Propiedad pública Name Gets or sets a String value that specifies the name of the DDL trigger. (Invalida NamedSmoObject.Name.)
Propiedad pública NotForReplication Gets or sets a Boolean property value that specifies whether the database data definition language (DDL) trigger is available for replication.
Propiedad pública Parent Gets or sets the Database object that is the parent of the DatabaseDdlTrigger object.
Propiedad pública Properties Gets a collection of Property objects that represent the object properties. (Se hereda de SqlSmoObject.)
Propiedad pública QuotedIdentifierStatus Gets or sets a Boolean property value that specifies whether identifiers delimited by double quotation marks are Transact-SQL reserved keywords or contain characters not usually allowed by the Transact-SQL syntax rules.
Propiedad pública State Gets the state of the referenced object. (Se hereda de SmoObjectBase.)
Propiedad pública Text Gets the Transact-SQL statement that defines the database data definition language (DDL) trigger.
Propiedad pública TextBody Gets or sets a String value that specifies the text body that is used to define the DDL trigger. (Invalida DdlTriggerBase.TextBody.)
Propiedad pública TextHeader Gets or sets a String value that specifies the text header that is used to define the DDL trigger. (Invalida DdlTriggerBase.TextHeader.)
Propiedad pública TextMode Gets or sets a Boolean value that specifies whether the DDL trigger is editable as text. (Invalida DdlTriggerBase.TextMode.)
Propiedad pública Urn Gets the Uniform Resource Name (URN) address value that uniquely identifies the object. (Se hereda de SqlSmoObject.)
Propiedad pública UserData Gets or sets user-defined data associated with the referenced object. (Se hereda de SmoObjectBase.)

Arriba

Métodos

  Nombre Descripción
Método público Alter Updates any DatabaseDdlTrigger object property changes on the instance of SQL Server. (Se hereda de DdlTriggerBase.)
Método público Create Creates a database data definition language (DDL) trigger on the instance of SQL Server as defined by the DatabaseDdlTrigger object. (Se hereda de DdlTriggerBase.)
Método público Discover Discovers a list of type Object. (Se hereda de SqlSmoObject.)
Método público Drop Drops the database data definition language (DDL) trigger. (Se hereda de DdlTriggerBase.)
Método público Equals (Se hereda de Object.)
Método protegido FormatSqlVariant Formats an object as SqlVariant type. (Se hereda de SqlSmoObject.)
Método protegido GetContextDB Gets the context database that is associated with this object. (Se hereda de SqlSmoObject.)
Método protegido GetDBName Gets the database name that is associated with the object. (Se hereda de SqlSmoObject.)
Método público GetHashCode (Se hereda de Object.)
Método protegido GetPropValue Gets a property value of the SqlSmoObject object. (Se hereda de SqlSmoObject.)
Método protegido GetPropValueOptional Gets a property value of the SqlSmoObject object. (Se hereda de SqlSmoObject.)
Método protegido GetPropValueOptionalAllowNull Gets a property value of the SqlSmoObject object. (Se hereda de SqlSmoObject.)
Método protegido GetServerObject Gets the server of the SqlSmoObject object. (Se hereda de SqlSmoObject.)
Método público GetType (Se hereda de Object.)
Método público Initialize() Initializes the object and forces the properties be loaded. (Se hereda de SqlSmoObject.)
Método público Initialize(Boolean) Initializes the object and forces the properties be loaded. (Se hereda de SqlSmoObject.)
Método protegido IsObjectInitialized Verifies whether the object has been initialized. (Se hereda de SqlSmoObject.)
Método protegido IsObjectInSpace Verifies whether the object is isolated or connected to the instance of SQL Server. (Se hereda de SqlSmoObject.)
Método público Refresh Refreshes the script name. (Se hereda de ScriptNameObjectBase.)
Método público Script() Generates a Transact-SQL script that can be used to re-create the database data definition language (DDL) trigger. (Se hereda de DdlTriggerBase.)
Método público Script(ScriptingOptions) Generates a Transact-SQL script that can be used to re-create the database data definition language (DDL) trigger as specified by the script options. (Se hereda de DdlTriggerBase.)
Método público ScriptHeader Generates a Transact-SQL script that can be used to re-create the database data definition language (DDL) trigger header as specified by the script options. (Se hereda de DdlTriggerBase.)
Método protegido SetParentImpl Sets the parent of the SqlSmoObject to the newParent parameter. (Se hereda de SqlSmoObject.)
Método público ToString Returns a String that represents the referenced object. (Se hereda de SqlSmoObject.)
Método público Validate Validates the state of an object. (Se hereda de SmoObjectBase.)

Arriba

Eventos

  Nombre Descripción
Evento público PropertyChanged Represents the event that occurs when a property is changed. (Se hereda de SqlSmoObject.)
Evento público PropertyMetadataChanged Represents the event that occurs when property metadata changes. (Se hereda de SqlSmoObject.)

Arriba

Implementaciones de interfaces explícitas

  Nombre Descripción
Implementación de interfaces explícitasMétodo privado IAlienObject.Discover Discovers any dependencies. No haga referencia directamente a este miembro en el código. Admite la infraestructura de SQL Server. (Se hereda de SqlSmoObject.)
Implementación de interfaces explícitasMétodo privado IAlienObject.GetDomainRoot Returns the root of the domain. (Se hereda de SqlSmoObject.)
Implementación de interfaces explícitasMétodo privado IAlienObject.GetParent Gets the parent of this object. No haga referencia directamente a este miembro en el código. Admite la infraestructura de SQL Server. (Se hereda de SqlSmoObject.)
Implementación de interfaces explícitasMétodo privado IAlienObject.GetPropertyType Gets the type of the specified property. (Se hereda de SqlSmoObject.)
Implementación de interfaces explícitasMétodo privado IAlienObject.GetPropertyValue Gets the value of the specified property. (Se hereda de SqlSmoObject.)
Implementación de interfaces explícitasMétodo privado IAlienObject.GetUrn Gets the Unified Resource Name (URN) of the object. No haga referencia directamente a este miembro en el código. Admite la infraestructura de SQL Server. (Se hereda de SqlSmoObject.)
Implementación de interfaces explícitasMétodo privado IAlienObject.Resolve Gets the instance that contains the information about the object from the Unified Resource Name (URN) of the object. (Se hereda de SqlSmoObject.)
Implementación de interfaces explícitasMétodo privado IAlienObject.SetObjectState Sets the object state to the specified SfcObjectState value. (Se hereda de SqlSmoObject.)
Implementación de interfaces explícitasMétodo privado IAlienObject.SetPropertyValue Sets the property value. (Se hereda de SqlSmoObject.)
Implementación de interfaces explícitasMétodo privado ISfcPropertyProvider.GetPropertySet Gets the interface reference to the set of properties of this object. (Se hereda de SqlSmoObject.)
Implementación de interfaces explícitasPropiedad privada ISfcSupportsDesignMode.IsDesignMode Gets a Boolean value that specifies whether the trigger supports design mode.

Arriba

Comentarios

DDL triggers run a Transact-SQL or user-defined function in response to certain DDL events.

SMO provides programmatic access to allow management of all DDL trigger functionality with the DatabaseDdlTrigger object and the ServerDdlTrigger object.

Database DDL triggers respond to events within the scope of the database and server DDL triggers respond to events within the scope of the SQL Server instance.

To get DatabaseDdlTrigger object properties, users can be a member of the public fixed server role.

To set DatabaseDdlTrigger object properties, users must have ALTER ANY DATABASE DDL TRIGGER permission on the database.

To create a DDL trigger, users must have ALTER ANY DATABASE DDL TRIGGER permission on the database.

To drop a DDL trigger, users must have ALTER ANY DATABASE DDL TRIGGER permission on the database.

To enable or disable the DDL trigger, users must have ALTER ANY DATABASE DDL TRIGGER permission on the database.

Thread Safety

Todos los miembros estáticos (compartidos en Microsoft Visual Basic) públicos de este tipo son seguros para operaciones multiproceso. No se garantiza que los miembros de instancia sean seguros para subprocesos.

Seguridad para subprocesos

Cualquier miembro público static (Shared en Visual Basic) de este tipo es seguro para subprocesos. No se garantiza que los miembros de instancia sean seguros para subprocesos.

Vea también

Referencia

Espacio de nombres Microsoft.SqlServer.Management.Smo

Otros recursos

Desencadenadores DDL