Trigger Object

SQL-DMO

SQL-DMO
Methods
Alter Method Remove Method (Objects)
EnumDependencies Method Script Method

Remarks

SQL Server supports using triggers as a kind of stored procedure. Triggers are executed when a specified data modification, such as an attempt to delete a row, is attempted on the table on which the trigger is defined. With the Trigger object, you can:

  • Create a SQL Server trigger on an existing SQL Server table.

  • Remove an existing SQL Server trigger from a SQL Server table.

  • Generate a Transact-SQL script to use in other tools to recreate an existing SQL Server trigger.

  • Change ownership of an existing SQL Server trigger.

The Name property of a Trigger object is a character string. The value of the property identifies a SQL Server trigger by name and must conform to the rules for trigger naming. The Name property is required when creating a SQL Server trigger.

To create a trigger on an existing SQL Server table

  1. Create a Trigger object.

  2. Set the Name property.

  3. Set the Text property to contain the Transact-SQL script defining the SQL Server trigger behavior. For more information about trigger scripts, see CREATE TRIGGER.

  4. Get the Table object referencing the SQL Server table you want from the Tables collection of the appropriate Database object.

  5. Use the BeginAlter method of the Table object to mark the start of changes to the SQL Server table definition.

  6. Add the new Trigger object to the Triggers collection of the selected Table object.

  7. Use the DoAlter method of the Table object to mark the end of changes and create the SQL Server trigger.

Note  The Trigger object is compatible with instances of SQL Server 2000 and SQL Server version 7.0. However, the Trigger2 object extends the functionality of the Trigger object for use with features that are new in SQL Server 2000.

See Also

Trigger2 Object