Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Bogus table for "instead of" trigger

Bogus table for "instead of" trigger

From: Morten <morten_at_kikobu.com>
Date: Thu, 07 Feb 2002 16:33:28 +0100
Message-ID: <3C629E48.3090708@kikobu.com>

Hi. From the documentation I can see that "instead of" triggers only can be placed on views. So I need to:

create table bogus_table (id number);
create view bogus_view as select id from bogus_table;

create trigger bogus_trigger
instead of insert into bogus_view
.
.

Is this the correct way? Seems strange. What's the reasoning for not being able to make an "instead of" trigger directly on the table?

Morten Received on Thu Feb 07 2002 - 09:33:28 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US