PLSQL 程序应在每月 1 日至 5 日以及每月 25 日至最后一天之间的任何一天运行
我有一个带有三个游标的 PLSQL 程序。该程序应该作为作业运行。
该作业应在每月 1 日到 5 日之间的任何一天运行。每月 25 日到最后一天也是如此。如何编写运行该程序的逻辑?
I have a PLSQL program with three cursors. This program should run as a job.
The job should run on any day between 1st and 5th of every month. And also between 25th and last day of every month. How to write a logic to run this program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会设置一个数据库作业每天运行,然后在程序开始时创建一个简单的 if 子句来检查运行其余代码是否有效。
I would set a database job to run every day and then make a simple if clause at the start of the program to check if it's valid day to run the rest of the code.
查看 DBMS_SCHEDULER 例程。
Oracle SQL Developer 的新版本 (v3) 有一个漂亮的 GUI 用于设置计划
Check out the DBMS_SCHEDULER routines.
The new version (v3) of Oracle's SQL Developer has a nice GUI for setting up schedules