Help With Triggers

From: Jefferson Gallaway <jkgallaway_at_home.com>
Date: Tue, 27 Feb 2001 04:01:19 GMT
Message-ID: <jEFm6.6297$Ye3.1402882_at_news1.rdc1.az.home.com>


[Quoted] Please help:

While this trigger is created without error in the SCHEMA Manager, my application refuses to validate the code. I am trying to take just a few of the values being inserted into table1 and [Quoted] insert those into table2

CREATE or replace TRIGGER system.event_insert_trig

    BEFORE insert ON system.event
    REFERENCES NEW as new
    FOR each row
BEGIN
    INSERT INTO system.CATALOG_EVENT
    VALUES ( :new.event_id, :new.campaign_id, :new.event_name, :new.event_desc, :new.concept_id, :new.channel_id,

    :new.company_id, 'N' );
END; Jefferson Gallaway
jkgallawy_at_home.com Received on Tue Feb 27 2001 - 05:01:19 CET

Original text of this message