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 -> Re: Update a table in another schema through a trigger

Re: Update a table in another schema through a trigger

From: Brian Rasmusson <br_at_bellesystems.com>
Date: Wed, 29 Sep 1999 14:15:37 +0200
Message-ID: <37F202E9.47A40B26@bellesystems.com>

> I would like to update a table in another schema in the same database. This
> should be done through a trigger on Insert or Update. How do I address the
> table in the other schema?

By issuing e.g. UPDATE <schema name>.<table name> SET <column name> = <value>, for example UPDATE user1.table1 SET column1=1;

Brian Received on Wed Sep 29 1999 - 07:15:37 CDT

Original text of this message

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