basic trigger information
From: simon taylor <simon.taylor_at_fdlearning.com>
Date: 15 May 2002 09:40:26 -0700
Message-ID: <6ffb6d34.0205150840.4efcfa3d_at_posting.google.com>
Date: 15 May 2002 09:40:26 -0700
Message-ID: <6ffb6d34.0205150840.4efcfa3d_at_posting.google.com>
Folks,
create or replace trigger test after insert
on sttest1
begin
so if i do
Any help would be great and appreciated !!
I'm trying to create an insert trigger that when a value is inserted
into a table this value is then used to call a stored proc ? but am
struggling with syntax.....
mysp(2586, 492, sttest1.col);
end;
insert into sttest1 values ('me')
then i want the value 'me'
to go into the call of mysp....
cheer
simon
Received on Wed May 15 2002 - 18:40:26 CEST