19 lines
462 B
Plaintext
19 lines
462 B
Plaintext
CREATE OR REPLACE TRIGGER "EFT_NOM".cg$BIS_ERROR_LOGS
|
|
|
|
BEFORE INSERT ON ERROR_LOGS
|
|
|
|
|
|
BEGIN
|
|
-- Application_logic Pre-Before-Insert-statement <<Start>>
|
|
-- Application_logic Pre-Before-Insert-statement << End >>
|
|
|
|
cg$ERROR_LOGS.cg$table.DELETE;
|
|
cg$ERROR_LOGS.cg$tableind.DELETE;
|
|
cg$ERROR_LOGS.idx := 1;
|
|
|
|
-- Application_logic Post-Before-Insert-statement <<Start>>
|
|
-- Application_logic Post-Before-Insert-statement << End >>
|
|
END;
|
|
/
|
|
|