I want to create simple oracle sql dbms_scheduler.create_job to run sh file:
BEGIN
DBMS_SCHEDULER.CREATE_JOB (
job_name => 'my_job1',
job_type => 'excecutable',
job_action => 'bin/some/some.sh',
enabled => TRUE,
comments => 'GOOD');
END;
Before starting some.sh I want to add parameteres to sh file:
echo sayHello from $argument_from_sql
How I can get "argument_from_sql" from Oracle sql when I am starting job. Where is any possibility?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…