Jul 5, 2001 #1 ameyrokde Programmer Joined Jul 5, 2001 Messages 1 Location 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 Joined Jan 11, 2001 Messages 40 Location 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 Joined Feb 14, 2001 Messages 9 Location 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.