Faisal
Faisal

Reputation: 673

Call Java program from Oracle database trigger

I have a oracle database table which records user's status. I have thousands of such users. Every time a user's status is updated/modified, I want to synchronize immediately over HTTP to some other server. I'll be using a Servlet here. I thought of using trigger to monitor such update. Upon every such update the trigger should fire an event that calls a Servlet/some Java code. I'm novice in Oracle database things. Could you please guide me to a working example similar to my above task? Many thanks!

Upvotes: 2

Views: 4886

Answers (1)

Zak
Zak

Reputation: 7078

See Calling Java methods from Oracle DB.

Upvotes: 3

Related Questions