Is this possible with the oracle scheduler. I just want to keep track of where it is running when work is running and get feedback.
dbms_scheduler.create_job( job_name => 'hello_oracle_scheduler', job_type => 'PLSQL_BLOCK', job_action => 'BEGIN DBMS_OUTPUT.PUT_LINE('' ''); DBMS_OUTPUT.PUT_LINE(''Hello world of scheduler. Time to execute scheduled jobs!!!''); END;', number_of_arguments => 0
source share