Oracle Calling a job with arguments
问题 I have a stored procedure parse_data which takes 3 arguments which are all NUMBER. I have created a program with three arguments and then a job that will run the stored procedure. The code looks like this: BEGIN dbms_scheduler.create_program(program_name => 'PARSE_PROGRAM', program_type => 'STORED_PROCEDURE', program_action => 'parse_data', number_of_arguments => 3, enabled => false, comments => ''); dbms_scheduler.define_program_argument(program_name => 'PARSE_PROGRAM', argument_name =>