![]() | ![]() Products ![]() ![]() ![]() ![]() |
Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 SQL Manual » DDL Statements » ALTER TRIGGER |
ALTER TRIGGER <Name> <ActionTime> <Type> ON <TableName> [AT <ExecutionPos>] [WHEN <Condition>] <BodyDefinition> [DESCRIPTION <Description>] <ActionTime>=BEFORE|AFTER|ERROR <Type>=INSERT|UPDATE [OF <UpdateColumns>]|DELETE|LOAD UPDATE|ALL <UpdateColumns>= <ColumnName> [,<ColumnName>] <BodyDefinition> = BEGIN [<Declaration>;] [<Declaration>;] [<Statement>;] [<Statement>;] [EXCEPTION] [<Statement>;] END
-- The following statement changes the description of the -- NotesUpdate trigger. ALTER TRIGGER "NotesUpdate" AFTER UPDATE OF "Notes" ON "Customer" BEGIN CALL SendEmail('CustomerReps',NEWROW.Notes); END DESCRIPTION 'Sends an email to all customer reps when Notes is updated'
Deviation | Details |
Extension | This SQL statement is an ElevateDB extension. |
This web page was last updated on Friday, January 31, 2025 at 08:42 AM | Privacy Policy![]() © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? ![]() |