Link to home
Start Free TrialLog in
Avatar of xbox360dp
xbox360dp

asked on

Help with AFTER INSERT trigger

Gurus,

I wrote a before insert trigger that isn't working.

create or replace
TRIGGER katvf7c_to_katimpc before
insert on KAT for each row
begin
:new.KATIMPC := :new.KATPF7C;
end;

What is the best way to convert this to an AFTER INSERT trigger as I can use the :new option?  Thanks in advance!
Avatar of Sean Stuber
Sean Stuber

you can use :new in a before row trigger

your syntax is valid, what isn't working about it?

what are you trying to do?
Instead of changing it, fix what isn't working.

This works for me:
drop table tab1 purge;
create table tab1(col1 char(1), col2 char(1));


create or replace trigger tab1_trig
before insert on tab1
for each row
begin
	:new.col2 := :new.col1;
end;
/

show errors

insert into tab1(col1) values('a');
commit;

select * from tab1;

Open in new window

Avatar of xbox360dp

ASKER

It's something funky through our application. If I insert the record directly through the database the trigger works fine.
Inserting into a table with a trigger and not having the trigger fire is not a feature of a 'funky application'.  It is a pretty huge bug/hole in the database.

The trigger as written will work.  Something isn't right.  I would dig deeper.
SOLUTION
Avatar of Sean Stuber
Sean Stuber

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
if you have 2 columns that must always be equal, you might want to consider simply dropping the KATIMPC column and then recreating it as a virtual column.

Of course that will mean rearranging the order of columns in your table, so it might not be feasible.

Another option but a bit more cumbersome:  change the name of the table and create a view with the table's original name.  This will let you drop the physical column but recreate the logical column in its original position within the table.
I've requested that this question be closed as follows:

Accepted answer: 0 points for xbox360dp's comment #a40328681

for the following reason:

This worked for me.
Shouldn't a split be in order since you changed your trigger based on my comment about updates?