如何在特定时间创建 运行 程序的触发器?
How to create a trigger to run a procedure at a certain time?
我需要知道是否有任何方法可以创建触发器以在特定时间执行过程,例如:
create trigger Fire
when sysdate = 1-oct-2015
execute (procedure);
我希望你能理解我,请提供任何解决方案,我该怎么做
Trigger is executed BEFORE or AFTER some event e.g. INSERT. To control execution at a specific time maybe you need a SCHEDULER
简单的例子是 here 其他搜索 "DBMS_SCHEDULER"
有多种方法可以安排 PROCEDURE/FUNCTION。以下是提到的方法。
1) There is DB scheduler.
2) There is CRON TAB.
3) There is AUTOSYS jobs.
4) Datawarehousing tools like ETL (Informatica etc.)
These are very eficient to handle these kind of scheduling. My personal favourite id AUTOSYS jobs which uses.JIL file.
Let me know if this helps you.
:)
我需要知道是否有任何方法可以创建触发器以在特定时间执行过程,例如:
create trigger Fire
when sysdate = 1-oct-2015
execute (procedure);
我希望你能理解我,请提供任何解决方案,我该怎么做
Trigger is executed BEFORE or AFTER some event e.g. INSERT. To control execution at a specific time maybe you need a SCHEDULER
简单的例子是 here 其他搜索 "DBMS_SCHEDULER"
有多种方法可以安排 PROCEDURE/FUNCTION。以下是提到的方法。
1) There is DB scheduler.
2) There is CRON TAB.
3) There is AUTOSYS jobs.
4) Datawarehousing tools like ETL (Informatica etc.)
These are very eficient to handle these kind of scheduling. My personal favourite id AUTOSYS jobs which uses.JIL file.
Let me know if this helps you.
:)