Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 SQL Manual » System Information » Triggers Table |
CREATE TABLE "Triggers" ( "TableName" VARCHAR(40) COLLATE "ANSI_CI", "Name" VARCHAR(40) COLLATE "ANSI_CI", "Description" CLOB COLLATE "ANSI", "ActionTime" VARCHAR(15) COLLATE "ANSI_CI", "ActionType" VARCHAR(15) COLLATE "ANSI_CI", "Condition" CLOB COLLATE "ANSI", "Definition" CLOB COLLATE "ANSI", "Enabled" BOOLEAN, "OrdinalPos" INTEGER, "CreateSQL" CLOB COLLATE "ANSI_CI", "DropSQL" CLOB COLLATE "ANSI_CI" ) CREATE INDEX "TableName" ON "Triggers" ("TableName") CREATE INDEX "Name" ON "Triggers" ("Name")
ActionTime | Description |
Before | The trigger will be executed before the type of operation for which the trigger is defined |
After | The trigger will be executed after the type of operation for which the trigger is defined |
Error | The trigger will be executed after any error with the type of operation for which the trigger is defined |
ActionType | Description |
Insert | The trigger will be executed for any insert operation |
Update | The trigger will be executed for any update operation |
Delete | The trigger will be executed for any delete operation |
All | The trigger will be executed for all operations (universal trigger) |
Statement | Description |
CREATE TRIGGER | Creates a new trigger |
ALTER TRIGGER | Alters an existing trigger |
DROP TRIGGER | Drops an existing trigger |
RENAME TRIGGER | Renames an existing trigger |
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 |