Tagged Questions

3
votes
1answer
98 views

Implementing Multithreading in Oracle Procedures

I am working on Oracle 10gR2. And here is my problem - I have a procedure, lets call it *proc_parent* (inside a package) which is supposed to call another procedure, lets call it *user_creation*. I ...
1
vote
2answers
93 views

How to activate a trigger on a date

How could I have a trigger that updates a certain field when the system reaches a certain date ? i.e. +---------------------+ +-------------+ | Trains | | Trips | ...
1
vote
1answer
4k views

How to execute a procedure with DBMS_SCHEDULER.CREATE_JOB procedure

I want to create a job that would drop a database object at a given date. The job created all right but the procedure is not executed. Tried executing the procedure alone and it works. Here's the ...