thanks in advance,
@Ste
If the other database is an Oracle database then it sounds like you
could issue a distributed insert to the remote database table via a
local instance table trigger. Everything you need to know to perform
this task in this manner is covered in the DBA Administration Guide.
If the remote database is a non-Oracle database then your options
become Generic Connectivity, the Oracle Gateway Product, or using
either a purchased middleware product or rolling a middleware solution
of your own. For anyone unfamilar with the term, middleware, refers
to store and forward message passing systems. IBM offers a well known
product whose name I cannot remember. TIBCO also competes in this
market.
The solution could be as simple as a java program that opens both
databases and extracts data from one table and inserts it into a table
on the other end. The best solution will depend on your exact
requirements and the choice will probably consider the time and cost
of each of your options.
HTH -- Mark D Powell --
If version 10g look at the dbms_change_notification built-in package.
demo in Morgan's Library at www.psoug.org
If an earlier version then likely you will need to look at using an
AFTER INSERT OR UPDATE OR DELETE trigger
again there are demos in the library under "table triggers"
--
Daniel A. Morgan
University of Washington
damo...@x.washington.edu (replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org