M
M
ma232021-09-30 09:48:49
Oracle
ma23, 2021-09-30 09:48:49

How to assign a specific runtime to a chain in Oracle?

Good afternoon,
I want the chain to run every day at a certain time, is it possible to do this in Oracle?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
idShura, 2021-09-30
@idShura

Creating Jobs for Chains

BEGIN
DBMS_SCHEDULER.CREATE_JOB (
   job_name        => 'chain_job_1',
   job_type        => 'CHAIN',
   job_action      => 'my_chain1',
   repeat_interval => 'freq=daily;byhour=13;byminute=0;bysecond=0',
   enabled         => TRUE);
END;
/

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question