Jul 5, 2001 #1 ameyrokde Programmer Jul 5, 2001 1 DE Hi I would like how can i write a trigger which should be activated after specified time and perform the specified activity
Hi I would like how can i write a trigger which should be activated after specified time and perform the specified activity
Jul 5, 2001 #2 Nebuchednezzar MIS Jan 11, 2001 40 US Use dbms_job...not a trigger. A trigger causes something to happen based on another event occurring. sounds like you are just wanting a process to occur on a timed basis...not based on another event occurring. Upvote 0 Downvote
Use dbms_job...not a trigger. A trigger causes something to happen based on another event occurring. sounds like you are just wanting a process to occur on a timed basis...not based on another event occurring.
Jul 16, 2001 #3 Fredzo Programmer Feb 14, 2001 9 US Check documentation on the DBMS_JOB package. This will run a stored procedure at a specified interval or time. Upvote 0 Downvote
Check documentation on the DBMS_JOB package. This will run a stored procedure at a specified interval or time.