我刚刚使用SQL Developer内置向导创建了一个作业,我想从我的应用程序中更改创建的作业的参数。 这项工作是每天7点启动存储过程。
在我必须填写的应用程序中:
答案 0 :(得分:3)
Begin
dbms_scheduler.disable( 'ATOS."job_email_notifications"' );
DBMS_SCHEDULER.SET_ATTRIBUTE ( name => 'ATOS."job_email_notifications"', attribute => 'repeat_interval', value => 'freq=daily;byday=FRI,SAT;byhour=20;byminute=0; bysecond=0');--change value--as per need
dbms_scheduler.enable( 'ATOS."job_email_notifications"' );
End;
/
答案 1 :(得分:0)
根据值使用以下程序进行动态更新
clearPers() {
console.log('Inside clearPers function');
this.router.navigate(['/person/' + this.key]);
}