Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
And what exactly is the difficulty?
Here, for example: citforum.ru/database/oracle/scheduler
Here is the code I am using.
BEGIN
DBMS_SCHEDULER.CREATE_JOB(
job_name => 'test2',
job_type => 'EXECUTABLE',
job_action => 'cmd.exe',
start_date=>to_date('10.02.14 14:25', 'dd.mm.yy hh24:mi'),
repeat_interval=>'FREQ=MINUTELY;INTERVAL=2'
--number_of_arguments => 1
);
DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE (
job_name => 'test2',
argument_position => 1,
argument_value => 'java -classpath "c:\ojdbc6.jar;c:\projectjava.jar" Class1'
);
DBMS_SCHEDULER.ENABLE('test1');
END;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question