How to create a job, when job_action need to call a procedure having CLOB parameter
问题 I have a procedure which is being called at server side and I need to make it asynchronous. So I have created another proc in which I'll create Oracle'Job and this will call that proc in its job_action. Proc is: PROCEDURE upload_csv_file_data(a_what_to_do IN VARCHAR2, a_logon_user IN VARCHAR2, a_csv_data IN CLOB) IS v_job_action VARCHAR2(32676); /*v_log_error VARCHAR2(32676);*/ v_job_name VARCHAR2(100); BEGIN v_job_action := 'process_csv_file_data(''' || a_what_to_do || ''',''' || a_logon