I need to call a Scheduler "DBMS_SCHEDULER.ENABLE('some_job')" from java. I tried to call it like
CallableStatement cs = = con.prepareCall("{exec DBMS_SCHEDULER.disable('some_job')}");
cs.executeUpdate();
Also replaced exec with call, but doesn't seem to be working.
If anyone has an idea on how to call please share.