I need to schedule a stored procedure to run using DBMS.JOB. Please show me how I can get this done. Here is it -
The stored procedure to run is:
GLOVIA_PROD.DIVTREND_PROC('EPM',
TO_CHAR(ADD_MONTHS(SYSDATE,-1),'MM'),
TO_CHAR(ADD_MONTHS(SYSDATE,-1),'YYYY'));
This should run on the 1st of every month starting July 1, 2008.
It is already created in the database
