Login ProductsSalesSupportDownloadsAbout |
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 Thursday, November 16, 2023 at 10:39 AM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |