Hi,
I am working on Oracle version below:
Oracle Database 11g Release 11.2.0.4.0 - 64bit Production
PL/SQL Release 11.2.0.4.0 - Production
I have code to create job using DBMS_SCHEDULER.CREATE_JOB. Here, job_action parameter to it, is PL/SQL block e.g.
BEGIN
my_pacakge_pkg.p_procedure;
END;
Now, before calling DBMS_SCHEDULER.CREATE_JOB, I would like to know if my PL/SQL block compiles or not. Is there a way, I can check it?
Thanks.