Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
tool
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
@Ste  
View profile  
 More options Jul 4 2007, 8:52 am
Newsgroups: comp.databases.oracle.misc
From: "@Ste" <piletti-remo...@libero.it>
Date: Wed, 04 Jul 2007 14:52:06 +0200
Local: Wed, Jul 4 2007 8:52 am
Subject: tool
Hello NG
I'm looking for an oracle tool (or an external tool) able to call
external procedures when someone modify a record in a table.
The problem is that a program (not developed by me) makes changes in a
table and I need to update a second database (and make other non db
tasks) immediately after the record is written.
Is this thing possible ?

thanks in advance,

@Ste


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mark D Powell  
View profile  
 More options Jul 4 2007, 9:15 am
Newsgroups: comp.databases.oracle.misc
From: Mark D Powell <Mark.Pow...@eds.com>
Date: Wed, 04 Jul 2007 06:15:07 -0700
Local: Wed, Jul 4 2007 9:15 am
Subject: Re: tool
On Jul 4, 8:52 am, "@Ste" <piletti-remo...@libero.it> wrote:

> Hello NG
> I'm looking for an oracle tool (or an external tool) able to call
> external procedures when someone modify a record in a table.
> The problem is that a program (not developed by me) makes changes in a
> table and I need to update a second database (and make other non db
> tasks) immediately after the record is written.
> Is this thing possible ?

> 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 --


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DA Morgan  
View profile  
 More options Jul 4 2007, 9:51 am
Newsgroups: comp.databases.oracle.misc
From: DA Morgan <damor...@psoug.org>
Date: Wed, 04 Jul 2007 06:51:29 -0700
Local: Wed, Jul 4 2007 9:51 am
Subject: Re: tool

@Ste wrote:
> Hello NG
> I'm looking for an oracle tool (or an external tool) able to call
> external procedures when someone modify a record in a table.
> The problem is that a program (not developed by me) makes changes in a
> table and I need to update a second database (and make other non db
> tasks) immediately after the record is written.
> Is this thing possible ?

> thanks in advance,

> @Ste

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
damor...@x.washington.edu (replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »